UNPKG

402 BTypeScriptView Raw
1import { PushTest } from "../mapping/PushTest";
2/**
3 * Extended by any object that can react to a subset of pushes.
4 */
5export interface PushSelector {
6 name: string;
7 pushTest?: PushTest;
8}
9/**
10 * Superclass for registering actions or listeners associated with a push
11 */
12export interface PushRegistration<A> extends PushSelector {
13 action: A;
14}
15//# sourceMappingURL=PushRegistration.d.ts.map
\No newline at end of file