File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed
Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 11import 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- }
82export type ListenerFn = ( newValue ?: any , originalTarget ?: object ) => void ;
93export interface Listener {
104 originalTarget : any ;
Original file line number Diff line number Diff line change 11import 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
103export type ListenerFn = ( newValue ?: any , originalTarget ?: object ) => void ;
114
You can’t perform that action at this time.
0 commit comments