vuestic-ui
Version:
Vue 3 UI Framework
9 lines (8 loc) • 331 B
TypeScript
/**
* Create and append to head provided styles or update if exists.
*
* @param id - used to identify block for removal etc
* @param getStyles - closure to get styles
*/
export declare const addOrUpdateStyleElement: (id: string, getStyles: () => string) => void;
export declare const removeStyleElement: (id: string) => void;