@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
17 lines • 473 B
TypeScript
export declare const endpoint: string;
export declare enum ACTIONS {
getContent = "getContent"
}
export interface GetContentRequest {
type: ACTIONS.getContent;
pluginId: string;
}
export interface GetContentResponse {
type: ACTIONS.getContent;
ok: boolean;
message?: string;
payload: object;
}
export declare type ActionRequests = GetContentRequest;
export declare type ActionResponses = GetContentResponse;
//# sourceMappingURL=plugins.d.ts.map