From 66c1bc3ae52ea2129e862fc1b129e2435d25dcf2 Mon Sep 17 00:00:00 2001 From: Joel Carter Date: Sun, 26 Feb 2023 16:33:52 -0600 Subject: [PATCH] Export method from project --- packages/static-implements/src/index.ts | 1 + packages/static-implements/src/staticImplements.ts | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 packages/static-implements/src/index.ts diff --git a/packages/static-implements/src/index.ts b/packages/static-implements/src/index.ts new file mode 100644 index 00000000..fc6c706f --- /dev/null +++ b/packages/static-implements/src/index.ts @@ -0,0 +1 @@ +export * from './staticImplements' diff --git a/packages/static-implements/src/staticImplements.ts b/packages/static-implements/src/staticImplements.ts index d8a0fdea..f0f89a38 100644 --- a/packages/static-implements/src/staticImplements.ts +++ b/packages/static-implements/src/staticImplements.ts @@ -1,8 +1,7 @@ /** - * Annotation to be used to decorate classes which support - * an asynchronous creation pattern - * @returns The decorated Module requiring it implement the members - * of the CreatableModule as statics properties/methods + * Annotation to decorate classes which implement static methods + * @returns The decorated class requiring it to implement + * the members of the the type as static properties/methods */ export function staticImplements() { return (constructor: U) => {