From 685d6c71a6ff4ac28a1b0d9c2832c55ce3ded313 Mon Sep 17 00:00:00 2001 From: Dan Adajian Date: Wed, 8 May 2024 11:52:53 -0500 Subject: [PATCH] docs: update resolverClasses description --- src/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 0b2cd0e..eec4c86 100644 --- a/src/config.ts +++ b/src/config.ts @@ -108,7 +108,8 @@ export const configSchema = object({ */ packageName: optional(string()), /** - * Denotes types that should be generated as interfaces rather than classes. Resolver classes should inherit from these to enforce a type contract. + * Denotes types that should be generated as interfaces rather than classes. Resolver classes should implement the + * interface functions to enforce a type contract. * * Type names can be optionally passed with the classMethods config to generate the interface with `suspend` functions or * `java.util.concurrent.CompletableFuture` functions.