oak-general-business/lib/types/Style.d.ts

7 lines
106 B
TypeScript

export declare type Color = {
primary: string;
};
export declare type Style = {
color?: Color;
};