UNPKG

@azure-utils/storybooks

Version:

Utils to upload and manage Storybooks via Azure Functions and storage.

35 lines (34 loc) 916 B
import type { ZodOpenApiPathItemObject, ZodOpenApiPathsObject, ZodOpenApiSchemaObject } from "zod-openapi"; export declare const openAPIPaths: ZodOpenApiPathsObject; export declare function registerOpenAPIPath(path: string, input: ZodOpenApiPathItemObject): void; export declare const openAPITags: { projects: { name: string; description: string; }; builds: { name: string; description: string; }; labels: { name: string; description: string; }; storybook: { name: string; description: string; }; webUI: { name: string; description: string; }; }; export declare const openAPISchemas: Record<string, ZodOpenApiSchemaObject>; export declare const openAPISecuritySchemas: { functionsKey: { type: "apiKey"; in: string; name: string; description: string; }; };