12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
import { IconifyIconCustomisations } from "./defaults.js";
|
|
/**
|
|
* Additional shorthand customisations
|
|
*/
|
|
interface ShorthandIconCustomisations {
|
|
flip?: string;
|
|
}
|
|
/**
|
|
* Apply "flip" string to icon customisations
|
|
*/
|
|
declare function flipFromString(custom: IconifyIconCustomisations, flip: string): void;
|
|
export { ShorthandIconCustomisations, flipFromString }; |