From d63621fe82a95af7ef2b9232338d4cf48cfeb48a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 26 Oct 2022 11:24:41 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 8 ++++++++ ts/index.ts | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 ts/00_commitinfo_data.ts 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 = {};