/** * The structure of a shield endpoint response * @see https://shields.io/endpoint */ export interface Shield { schemaVersion: 1; label: string; message: string; color: Color; namedLogo: 'stryker'; logoColor: Color; } export declare const Color: { readonly Grey: 'lightgrey'; readonly Red: 'red'; readonly Orange: 'orange'; readonly Green: 'green'; readonly BrightGreen: 'brightgreen'; readonly WhiteSmoke: 'whitesmoke'; }; export type Color = (typeof Color)[keyof typeof Color]; //# sourceMappingURL=Shield.d.ts.map