6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
/**
|
|
* Parse inline style
|
|
*/
|
|
declare function parseInlineStyle(style: string): Record<string, string> | null;
|
|
|
|
export { parseInlineStyle };
|