Skip to content

Commit 76b96aa

Browse files
committed
Remove unused type
1 parent bc3f2b6 commit 76b96aa

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

@types/core/scope/interface.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
import type { CompiledExpression } from "../parse/interface.ts";
2-
import { Scope } from "./scope.js";
3-
export interface AsyncQueueTask {
4-
handler: Scope;
5-
fn: (...args: any[]) => any;
6-
locals: Record<string, any>;
7-
}
82
export type ListenerFn = (newValue?: any, originalTarget?: object) => void;
93
export interface Listener {
104
originalTarget: any;

src/core/scope/interface.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
import type { CompiledExpression } from "../parse/interface.ts";
2-
import { Scope } from "./scope.js";
3-
4-
export interface AsyncQueueTask {
5-
handler: Scope;
6-
fn: (...args: any[]) => any;
7-
locals: Record<string, any>;
8-
}
92

103
export type ListenerFn = (newValue?: any, originalTarget?: object) => void;
114

0 commit comments

Comments
 (0)