9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
export type Publish = {
|
|
event: string;
|
|
uuid?: string;
|
|
path?: string;
|
|
type?: string;
|
|
value?: undefined;
|
|
};
|
|
export type Pubs = Publish[];
|