UNPKG

246 BTypeScriptView Raw
1/**
2 * Returns whether the payload is a primitive type (eg. Boolean | Null | Undefined | Number | String
3 *
4 * | Symbol)
5 */
6export declare function isPrimitive(payload: unknown): payload is boolean | null | undefined | number | string | symbol;