-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathArgs.ts
44 lines (38 loc) · 1.39 KB
/
Args.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
type PrimitiveValue = undefined | null | string | number | boolean;
type RecursivePrimitiveObject<T> = { [index: string]: RecursivePrimitiveObject<T> } | RecursivePrimitiveObject<T>[] | T;
/**
* A simple JSON-like that will be acessible on the outputted code
*/
export type StringifiableObject = Record<string, RecursivePrimitiveObject<PrimitiveValue>>;
export enum ExposureStrategy {
/**
* Objects can be referenced by their name
*
* @example `{ hello: 'there' }` can be referenced by `hello`
*/
NONE = 'NONE',
/**
* Objects can be referenced by accessing the window object
*
* @example `{ hello: 'there' }` can be referenced by `window.hello`
*/
WINDOW = 'WINDOW',
}
export type ExposureFunction = (name: string) => string;
export type SafeDefinePluginOptions = {
/**
* Define how the top level entries of the given object can be exposed in the bundle
*
* See `ExposureStrategy` for default options
*/
readonly exposureStrategy?: ExposureStrategy | string[] | ExposureFunction;
/**
* It is also possible to expose the root definition itself
*
* So instead of having to reference the children of the property
* One can reference the exposure itself of the built code
*
* Use this with **caution** as the outputted bundle might get big
*/
readonly rootExposureStrategy?: string[];
};