mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 04:50:12 +02:00
c9dbf9b5be
* draft add remotes * add favorite, rating * add basic auth
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
import { isMacOS, isWindows, isLinux } from '../utils';
|
|
|
|
export const utils = {
|
|
isLinux,
|
|
isMacOS,
|
|
isWindows,
|
|
};
|
|
|
|
export type Utils = typeof utils;
|