@awayfl/avm1
Version:
Virtual machine for executing AS1 and AS2 code
11 lines • 483 B
TypeScript
import { AVM1PropertyFlags, IAVM1Callable, IAVM1PropertyWatcher } from '../runtime';
export declare class AVM1PropertyDescriptor {
flags: AVM1PropertyFlags;
value?: any;
get?: IAVM1Callable;
set?: IAVM1Callable;
watcher?: IAVM1PropertyWatcher;
originalName: string | number;
constructor(flags: AVM1PropertyFlags, value?: any, get?: IAVM1Callable, set?: IAVM1Callable, watcher?: IAVM1PropertyWatcher);
}
//# sourceMappingURL=AVM1PropertyDescriptor.d.ts.map