mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-29 18:00:51 +01:00
6 lines
134 B
Go
6 lines
134 B
Go
import { OS_WINDOWS, OS_MAC, OS_LINUX } from '@/constants/os';
|
|
|
|
export declare global {
|
|
type OS = OS_WINDOWS | OS_MAC | OS_LINUX;
|
|
}
|