piral-core
Version:
The core library for creating a Piral instance.
51 lines (50 loc) • 1.09 kB
TypeScript
/**
* 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 {
}