Skip to content

Commit

Permalink
update lume cli version, update typescript version
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Nov 7, 2023
1 parent 671b4d7 commit 6d66a45
Show file tree
Hide file tree
Showing 30 changed files with 261 additions and 372 deletions.
188 changes: 94 additions & 94 deletions dist/Class.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/Class.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Class.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/Class.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/Mixin.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Constructor } from './utils.js';
export declare type MixinFunction = <T extends Constructor<any>>(BaseClass: T) => T;
export declare type MixinFunctionWithDefault = <T extends Constructor<any>>(BaseClass?: T) => T;
export declare type MixinResult<TClass extends Constructor, TBase extends Constructor> = Constructor<InstanceType<TClass> & InstanceType<TBase>> & TClass & TBase;
export type MixinFunction = <T extends Constructor<any>>(BaseClass: T) => T;
export type MixinFunctionWithDefault = <T extends Constructor<any>>(BaseClass?: T) => T;
export type MixinResult<TClass extends Constructor, TBase extends Constructor> = Constructor<InstanceType<TClass> & InstanceType<TBase>> & TClass & TBase;
export declare function Mixin<T extends MixinFunction>(mixinFn: T, DefaultBase?: Constructor): ReturnType<T> & {
mixin: T;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/Mixin.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6d66a45

Please sign in to comment.