UNPKG

267 BTypeScriptView Raw
1import { SideKeyword } from './sideKeyword';
2
3declare interface TriangleConfiguration {
4 backgroundColor?: string;
5 foregroundColor: string;
6 height: number | string;
7 width: number | string;
8 pointingDirection: SideKeyword;
9}
10
11export { TriangleConfiguration };