Skip to content

Commit 085218d

Browse files
committed
implements interface
1 parent 48f2566 commit 085218d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FunctionLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface LoadedFunction {
2020
thisArg: unknown;
2121
}
2222

23-
export class FunctionLoader {
23+
export class FunctionLoader implements IFunctionLoader {
2424
#loadedFunctions: { [k: string]: LoadedFunction | undefined } = {};
2525

2626
async load(functionId: string, metadata: rpc.IRpcFunctionMetadata, packageJson: PackageJson): Promise<void> {

0 commit comments

Comments
 (0)