atlassian-webresource-webpack-plugin
Version:
Auto-generates web-resource definitions from your webpacked code, for usage in an Atlassian product or plugin.
7 lines (6 loc) • 315 B
TypeScript
declare type AttributesObject = {
[key: string]: unknown;
};
export declare const stringifyAttributes: (attributes: AttributesObject) => string;
export declare const renderElement: (name: string, attributes: AttributesObject | string | undefined, children?: string | string[] | undefined) => string;
export {};