nestjs-what3words
Version:
What3Words module for NestJS
8 lines (7 loc) • 348 B
TypeScript
import { DynamicModule } from '@nestjs/common';
import { What3WordsAsyncOptions, What3WordsOptions } from './what3words.interface';
export declare class What3WordsModule {
static register(options: What3WordsOptions): DynamicModule;
static registerAsync(options: What3WordsAsyncOptions): DynamicModule;
private static createProviders;
}