8 lines
85 B
TypeScript
8 lines
85 B
TypeScript
type Config = {
|
|
zIndex: number;
|
|
};
|
|
|
|
export const config: Config = {
|
|
zIndex: 600
|
|
};
|