@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
31 lines • 650 B
TypeScript
/**
* Helper class to format the code.
*/
export declare class CodeFormatter {
/**
* Formats CSS code
* @param rawCSS
*/
formatCSS(rawCSS: string): string;
/**
* Formats JavaScript code
* @param rawScript
*/
formatScript(rawScript: string): string;
/**
* Formats XML code
* @param rawXML
*/
formatXML(rawXML: string): string;
/**
* Formats HTML code
* @param rawHTML
*/
formatHTML(rawHTML: string): string;
/**
* Formats JSON code
* @param rawJSON
*/
formatJSON(rawJSON: string): string;
}
//# sourceMappingURL=CodeFormatter.d.ts.map