@mcurros2/microm 1.1.362-0 → 1.1.364-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +21 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4014,6 +4014,12 @@ export interface DeveloperToolsPanelProps extends Omit<DataGridProps, 'entity' |
|
|
|
4014
4014
|
client: MicroMClient;
|
|
4015
4015
|
}
|
|
4016
4016
|
export function DeveloperToolsPanel({ client, ...rest }: DeveloperToolsPanelProps): JSX.Element;
|
|
4017
|
+
export interface CustomWindowEventDefinition {
|
|
4018
|
+
eventName: string;
|
|
4019
|
+
payload: ValuesObject;
|
|
4020
|
+
}
|
|
4021
|
+
export type CustomWindowEvent<T extends CustomWindowEventDefinition> = T;
|
|
4022
|
+
export function triggerCustomWindowEvent<T extends CustomWindowEventDefinition>(eventName: T["eventName"], payload: T["payload"]): void;
|
|
4017
4023
|
export interface MicroMError extends Error {
|
|
4018
4024
|
status: number;
|
|
4019
4025
|
message: string;
|