declare module 'js-yaml-loader!*' { export type CategoryOrScript = YamlCategory | YamlScript; export type DocumentationUrls = ReadonlyArray | string; export interface YamlDocumentable { docs?: DocumentationUrls; } export interface YamlScript extends YamlDocumentable { name: string; code: string; revertCode: string; recommend: boolean; } export interface YamlCategory extends YamlDocumentable { children: ReadonlyArray; category: string; } export interface ApplicationYaml { name: string; repositoryUrl: string; actions: ReadonlyArray; } const content: ApplicationYaml; export default content; }