Skip to content

Commit

Permalink
dependabot updates
Browse files Browse the repository at this point in the history
  • Loading branch information
wentout committed Nov 20, 2022
1 parent fe96867 commit b497d1a
Show file tree
Hide file tree
Showing 7 changed files with 1,495 additions and 1,489 deletions.
2 changes: 1 addition & 1 deletion build/api/errors/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export declare const stackCleaners: RegExp[];
export declare const cleanupStack: (stack: string[]) => string[];
export declare const getStack: (this: any, title: string, stackAddition: string[], tillFunction?: CallableFunction | undefined) => any;
export declare const getStack: (this: any, title: string, stackAddition: string[], tillFunction?: CallableFunction) => any;
export declare class BASE_MNEMONICA_ERROR extends Error {
constructor(message: string | undefined, additionalStack: string[]);
}
Expand Down
2 changes: 1 addition & 1 deletion build/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { TypeAbsorber, ITypeClass, TypeLookup, IDEF } from './types';
export type { IDEF } from './types';
export declare const defaultTypes: any;
export declare const define: TypeAbsorber;
export declare const tsdefine: <T>(this: any, TypeName: string, constructHandler: IDEF<T>, proto?: object | undefined, config?: object | undefined) => ITypeClass<T>;
export declare const tsdefine: <T>(this: any, TypeName: string, constructHandler: IDEF<T>, proto?: object, config?: object) => ITypeClass<T>;
export declare const lookup: TypeLookup;
export declare const mnemonica: {
[index: string]: unknown;
Expand Down
12 changes: 6 additions & 6 deletions build/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ export interface ConstructorFunction<ConstructorInstance extends object> {
(this: ConstructorInstance, ...args: any[]): ConstructorInstance;
prototype: ConstructorInstance;
}
export declare type TypeModificator<T extends object> = (...args: any[]) => ConstructorFunction<T>;
export declare type TypeLookup = (this: Map<string, any>, TypeNestedPath: string) => TypeClass;
export declare type TypeClass = {
export type TypeModificator<T extends object> = (...args: any[]) => ConstructorFunction<T>;
export type TypeLookup = (this: Map<string, any>, TypeNestedPath: string) => TypeClass;
export type TypeClass = {
new (...args: any[]): any;
define: TypeAbsorber;
lookup: TypeLookup;
registerHook: (type: 'preCreation' | 'postCreation' | 'creationError', hook: CallableFunction) => any;
};
export declare type TypeAbsorber = (this: any, TypeName: string, constructHandler: CallableFunction, proto?: object, config?: object) => TypeClass;
export declare type IDEF<T> = {
export type TypeAbsorber = (this: any, TypeName: string, constructHandler: CallableFunction, proto?: object, config?: object) => TypeClass;
export type IDEF<T> = {
new (...args: any[]): T;
(this: T, ...args: any[]): T;
prototype?: ThisType<T>;
};
export declare type ITypeAbsorber<T> = (this: any, TypeName: string, constructHandler: IDEF<T>, proto?: object, config?: object) => ITypeClass<T>;
export type ITypeAbsorber<T> = (this: any, TypeName: string, constructHandler: IDEF<T>, proto?: object, config?: object) => ITypeClass<T>;
export interface ITypeClass<T> {
new (...args: any[]): T;
(this: T, ...args: any[]): T;
Expand Down

0 comments on commit b497d1a

Please sign in to comment.