bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
10 lines (9 loc) • 492 B
TypeScript
export declare const assign: (target: any, ...args: any[]) => any;
export declare const defineProperties: (obj: any, props: PropertyDescriptorMap & ThisType<any>) => any;
export declare const defineProperty: (obj: any, prop: string | number | symbol, descriptor: PropertyDescriptor & ThisType<any>) => any;
export declare const omit: (obj: any, props: any) => any;
export declare const readonlyDescriptor: () => {
enumerable: boolean;
configurable: boolean;
writable: boolean;
};