mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
bc194d18c7
* add awaitng results state to live query search * make spinner more reusable and add it to query page awaiting results * create common QueryResultsHeader component to use on query policy flows
14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
/**
|
|
* A file that contains the custom typings for fleets own modules and libraries
|
|
*/
|
|
|
|
// PNG assests
|
|
declare module "*.png" {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
declare module "*.svg" {
|
|
const value: string;
|
|
export = value;
|
|
}
|