2020-11-11 17:17:37 +00:00
|
|
|
import {html} from 'htm/preact';
|
|
|
|
|
2020-11-12 21:42:21 +00:00
|
|
|
type QMessageAction = 'queue open url' | 'queue update badge';
|
2020-11-11 17:17:37 +00:00
|
|
|
|
|
|
|
export type QMessage<T> = {
|
|
|
|
action: QMessageAction;
|
|
|
|
data: T;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type QComponent = ReturnType<typeof html>;
|
|
|
|
|
|
|
|
export * from './utilities';
|