/** * This decorator is applied to a class's member function or property. * It indicates that the definition may optionally be overridden in a * child class. Conversely, if the \@virtual decorator is NOT applied to * a definition, then child classes may NOT override it. * This decorator is currently used for documentation purposes only. * In the future, it may be enforced at runtime. * * @public */ export declare function virtual(target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor): void; //# sourceMappingURL=virtual.d.ts.map