Files
mixtape/zero.Backoffice.UI/app/core/zero.d.ts
T
2021-12-10 14:59:35 +01:00

16 lines
329 B
TypeScript

import { ZeroSchema } from "zero/schemas";
import { Zero } from "./types/zero";
declare module '@vue/runtime-core'
{
export interface ComponentCustomProperties
{
/**
* zero instance
*/
zero: Zero
}
}
declare type Lazy<T> = () => Promise<T>;
declare type ZeroSchemaProp = ZeroSchema | Lazy<ZeroSchema>;