diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts new file mode 100644 index 0000000..dc47eed --- /dev/null +++ b/ts/00_commitinfo_data.ts @@ -0,0 +1,8 @@ +/** + * autocreated commitinfo by @pushrocks/commitinfo + */ +export const commitinfo = { + name: '@apiglobal/typedrequest-interfaces', + version: '1.0.16', + description: 'interfaces for making typed requests' +} diff --git a/ts/index.ts b/ts/index.ts index 051af24..0ab0573 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -58,3 +58,10 @@ export interface ITypedEvent { uniqueEventId: string; payload: T; } + +export interface ITag { + name: string; + payload: any; +} + +export type implementsTag = {};