fleet/frontend/typings/index.d.ts
Gabriel Hernandez bc194d18c7
Feat/update live query states (#8122)
* 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
2022-10-10 15:39:49 +01:00

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;
}