/** * Base type for definitions in JSON config resources. */ export interface Definition { kind: string; spec: Spec; } /** * Type to represent specs at runtime in framework code where we don't know the spec's real type, probably because it's * part of a plugin. */ export type UnknownSpec = Record; //# sourceMappingURL=definitions.d.ts.map