Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

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 574ea97 commit 3ae86a7
Show file tree
Hide file tree
Showing 9 changed files with 69 additions and 92 deletions.
8 changes: 4 additions & 4 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export interface Variable<T = any> extends Iterable<VariableGetter<T> | Variable
[Symbol.iterator](): IterableIterator<VariableGetter<T> | VariableSetter<T>>;
}
export declare function variable<T>(value: T): [VariableGetter<T>, VariableSetter<T>] & Variable<T>;
export declare type Computation = (previousValue?: unknown) => unknown;
export declare type StopFunction = () => void;
export type Computation = (previousValue?: unknown) => unknown;
export type StopFunction = () => void;
export declare function autorun(f: Computation): StopFunction;
export declare function reactive(protoOrClassElement: any, propName?: string, _descriptor?: PropertyDescriptor): any;
export declare function _trackReactiveProperty(Class: AnyClassWithReactiveProps, propName: string): void;
declare type AnyClass = new (...args: any[]) => object;
declare type AnyClassWithReactiveProps = (new (...args: any[]) => object) & {
type AnyClass = new (...args: any[]) => object;
type AnyClassWithReactiveProps = (new (...args: any[]) => object) & {
reactiveProperties?: string[];
__isReactive__?: true;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/index.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/index.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/index.js.map

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

Loading

0 comments on commit 3ae86a7

Please sign in to comment.