@figma/code-connect
Version:
A tool for connecting your design system components in code with your design system in Figma
15 lines • 670 B
TypeScript
export type FCCValue = string | number | boolean | undefined | ReturnType<typeof _fcc_identifier | typeof _fcc_object | typeof _fcc_templateString>;
export declare function _fcc_templateString($value: string): {
readonly $value: string;
readonly $type: "template-string";
};
export declare function _fcc_object($value: Record<string, any>): {
readonly $value: Record<string, any>;
readonly $type: "object";
};
export declare function _fcc_identifier($value: string): {
readonly $value: string;
readonly $type: "identifier";
};
export declare function getParsedTemplateHelpersString(): string;
//# sourceMappingURL=parser_template_helpers.d.ts.map