payload
Version:
Node, React, Headless CMS and Application Framework built on Next.js
7 lines • 322 B
TypeScript
import type { ServerProps } from '../../config/types.js';
export type PublishButtonClientProps = {
label?: string;
};
export type PublishButtonServerPropsOnly = {} & ServerProps;
export type PublishButtonServerProps = PublishButtonClientProps & PublishButtonServerPropsOnly;
//# sourceMappingURL=PublishButton.d.ts.map