5 lines
101 B
TypeScript
5 lines
101 B
TypeScript
|
import { IAccents } from "./iaccents";
|
||
|
|
||
|
export interface IThemeConfigCommons {
|
||
|
accents: IAccents;
|
||
|
}
|