Files
mixtape/zero.Backoffice.UI/app/core/zero.d.ts
T

16 lines
329 B
TypeScript
Raw Normal View History

2021-12-10 14:59:35 +01:00
import { ZeroSchema } from "zero/schemas";
2021-12-10 14:23:14 +01:00
import { Zero } from "./types/zero";
declare module '@vue/runtime-core'
{
export interface ComponentCustomProperties
{
/**
* zero instance
*/
zero: Zero
}
2021-12-10 14:59:35 +01:00
}
declare type Lazy<T> = () => Promise<T>;
declare type ZeroSchemaProp = ZeroSchema | Lazy<ZeroSchema>;