inital #6
This commit is contained in:
2
out/index.d.ts
vendored
2
out/index.d.ts
vendored
@@ -5,7 +5,7 @@ export { AuthProxy } from './auth-proxy';
|
|||||||
export { Resolvable, WaitForSync } from './helpers/resolvable';
|
export { Resolvable, WaitForSync } from './helpers/resolvable';
|
||||||
export { urlJoin } from './helpers/urlJoin';
|
export { urlJoin } from './helpers/urlJoin';
|
||||||
export { AutoReloader } from './auto-reload';
|
export { AutoReloader } from './auto-reload';
|
||||||
export { Polyfill, PolyfillOptions } from './polyfill';
|
export { Polyfill, PolyfillOptions, PolyfillFeatureList } from './polyfill';
|
||||||
export { Session } from './session';
|
export { Session } from './session';
|
||||||
export { Permissions } from './permissions';
|
export { Permissions } from './permissions';
|
||||||
export { UserInfo } from './helpers/userinfo';
|
export { UserInfo } from './helpers/userinfo';
|
||||||
|
|||||||
6
out/polyfill.d.ts
vendored
6
out/polyfill.d.ts
vendored
@@ -1,5 +1,9 @@
|
|||||||
import { RequestHandler } from 'express';
|
import { RequestHandler } from 'express';
|
||||||
import { PolyfillFeatureList } from 'polyfill-library';
|
export declare type PolyfillFeatureList = {
|
||||||
|
[featureName: string]: {
|
||||||
|
flags?: string[];
|
||||||
|
};
|
||||||
|
};
|
||||||
export declare type PolyfillOptions = {
|
export declare type PolyfillOptions = {
|
||||||
minify: boolean;
|
minify: boolean;
|
||||||
unknown: 'polyfill' | 'ignore';
|
unknown: 'polyfill' | 'ignore';
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ export {AuthProxy} from './auth-proxy';
|
|||||||
export {Resolvable, WaitForSync} from './helpers/resolvable';
|
export {Resolvable, WaitForSync} from './helpers/resolvable';
|
||||||
export {urlJoin} from './helpers/urlJoin';
|
export {urlJoin} from './helpers/urlJoin';
|
||||||
export {AutoReloader} from './auto-reload';
|
export {AutoReloader} from './auto-reload';
|
||||||
export {Polyfill, PolyfillOptions} from './polyfill';
|
export {Polyfill, PolyfillOptions, PolyfillFeatureList} from './polyfill';
|
||||||
export {Session} from './session';
|
export {Session} from './session';
|
||||||
export {Permissions} from './permissions';
|
export {Permissions} from './permissions';
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,15 @@
|
|||||||
import {RequestHandler} from 'express';
|
import {RequestHandler} from 'express';
|
||||||
import * as polyfillLibrary from 'polyfill-library';
|
import * as polyfillLibrary from 'polyfill-library';
|
||||||
import {PolyfillFeatureList} from 'polyfill-library';
|
|
||||||
import {DefaultConfig, Logger, WaitForSync} from '.';
|
import {DefaultConfig, Logger, WaitForSync} from '.';
|
||||||
import {spawn, Thread, Worker} from 'threads';
|
import {spawn, Thread, Worker} from 'threads';
|
||||||
import {WorkerFunction} from 'threads/dist/types/worker';
|
import {WorkerFunction} from 'threads/dist/types/worker';
|
||||||
|
|
||||||
|
export type PolyfillFeatureList = {
|
||||||
|
[featureName: string]: {
|
||||||
|
flags?: string[]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export type PolyfillOptions = {
|
export type PolyfillOptions = {
|
||||||
minify: boolean,
|
minify: boolean,
|
||||||
unknown: 'polyfill'|'ignore',
|
unknown: 'polyfill'|'ignore',
|
||||||
|
|||||||
Reference in New Issue
Block a user