blob: e874b815d9e116e07624cde4a71a68abcbe324b7 (
plain)
1
2
3
4
5
6
7
8
|
interface IGlobalScss {
contextMenuZindex: string; // context menu shows up over everything
COLLECTION_BORDER_WIDTH: number;
}
declare const globalCssVariables: IGlobalScss;
export = globalCssVariables;
|