UNPKG

piral-core

Version:

The core library for creating a Piral instance.

50 lines (40 loc) 1.09 kB
/** * Custom Pilet API parts defined outside of piral-core. */ export interface PiletCustomApi {} /** * Custom meta data to include for pages. */ export interface PiralCustomPageMeta {} /** * Custom state extensions defined outside of piral-core. */ export interface PiralCustomState {} /** * Custom errors defined outside of piral-core. */ export interface PiralCustomErrors {} /** * Custom actions defined outside of piral-core. */ export interface PiralCustomActions {} /** * Custom events defined outside of piral-core. */ export interface PiralCustomEventMap {} /** * Custom extension slots outside of piral-core. */ export interface PiralCustomExtensionSlotMap {} /** * Custom parts of the global registry state defined outside of piral-core. */ export interface PiralCustomRegistryState {} /** * Custom component converters defined outside of piral-core. */ export interface PiralCustomComponentConverters<TProps> {} /** * Custom parts of the global custom component state defined outside of piral-core. */ export interface PiralCustomComponentsState {}