This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
Nico e2667f8e12 Initial nyx project — fork of hermes-frontend
Forked from hermes-frontend, stripped openclaw/bun specifics:
- Auth tokens: openclaw_session -> nyx_session
- Vite proxy: localhost:3003 -> localhost:8000 (assay)
- Prod WS: wss://assay.loop42.de/ws
- Workspace paths: removed openclaw-specific paths
- Added missing deps: @heroicons/vue, overlayscrollbars-vue
- Branding: title -> nyx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-31 20:23:27 +02:00

25 lines
1.7 KiB
TypeScript

export declare const isUndefined: (payload: any) => payload is undefined;
export declare const isNull: (payload: any) => payload is null;
export declare const isPlainObject: (payload: any) => payload is {
[key: string]: any;
};
export declare const isEmptyObject: (payload: any) => payload is {};
export declare const isArray: (payload: any) => payload is any[];
export declare const isString: (payload: any) => payload is string;
export declare const isNumber: (payload: any) => payload is number;
export declare const isBoolean: (payload: any) => payload is boolean;
export declare const isRegExp: (payload: any) => payload is RegExp;
export declare const isMap: (payload: any) => payload is Map<any, any>;
export declare const isSet: (payload: any) => payload is Set<any>;
export declare const isSymbol: (payload: any) => payload is symbol;
export declare const isDate: (payload: any) => payload is Date;
export declare const isError: (payload: any) => payload is Error;
export declare const isNaNValue: (payload: any) => payload is typeof NaN;
export declare const isPrimitive: (payload: any) => payload is boolean | null | undefined | number | string | symbol;
export declare const isBigint: (payload: any) => payload is bigint;
export declare const isInfinite: (payload: any) => payload is number;
export type TypedArrayConstructor = Int8ArrayConstructor | Uint8ArrayConstructor | Uint8ClampedArrayConstructor | Int16ArrayConstructor | Uint16ArrayConstructor | Int32ArrayConstructor | Uint32ArrayConstructor | Float32ArrayConstructor | Float64ArrayConstructor;
export type TypedArray = InstanceType<TypedArrayConstructor>;
export declare const isTypedArray: (payload: any) => payload is TypedArray;
export declare const isURL: (payload: any) => payload is URL;