PluginProbe
Booking Calendar / 11.8
Booking Calendar v11.8
11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 All 203 releases
booking / vendors / imask / esm / core / utils.d.ts

utils.d.ts in Booking Calendar 11.8, at vendors/imask/esm/core/utils.d.ts

25 lines 1021 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /** Checks if value is string */
2 export declare function isString(str: unknown): str is string;
3 /** Checks if value is object */
4 export declare function isObject(obj: unknown): obj is object;
5 export declare function pick<T extends Record<string, any>, K extends keyof T, V extends T[keyof T]>(obj: T, keys: K[] | ((v: V, k: K) => boolean)): Pick<T, K>;
6 /** Direction */
7 export declare const DIRECTION: {
8 readonly NONE: "NONE";
9 readonly LEFT: "LEFT";
10 readonly FORCE_LEFT: "FORCE_LEFT";
11 readonly RIGHT: "RIGHT";
12 readonly FORCE_RIGHT: "FORCE_RIGHT";
13 };
14 /** Direction */
15 export type Direction = typeof DIRECTION[keyof typeof DIRECTION];
16 export declare function forceDirection(direction: Direction): Direction;
17 /** Escapes regular expression control chars */
18 export declare function escapeRegExp(str: string): string;
19 export declare function objectIncludes(b: any, a: any): boolean;
20 /** Selection range */
21 export type Selection = {
22 start: number;
23 end: number;
24 };
25 //# sourceMappingURL=utils.d.ts.map