UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

11 lines (10 loc) 270 B
/** @since 3.9.0 */ export declare function toArray<T>(value: T | T[]): T[]; type Trace = { source: string; line?: number; column?: number; }; export declare function getUserTrace(): Trace[]; export declare function getUserCaller(): Trace | null; export {};