UNPKG

@azure-utils/storybooks

Version:

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

9 lines (8 loc) 300 B
import { LabelType } from "../models/labels"; export interface LabelsTableProps { caption?: JSX.Element; projectId: string; toolbar?: JSX.Element; labels: LabelType[]; } export declare function LabelsTable({ labels, projectId, toolbar, caption, }: LabelsTableProps): Promise<string>;