UNPKG
@shons/next-configify
Version:
latest (1.0.1)
1.0.1
NestJS Config on Next Steroids
github.com/shonbir/next-configify
shonbir/next-configify
@shons/next-configify
/
src
/
configuration
/
resolvers
/
configuration-resolver.interface.ts
12 lines
(11 loc)
•
295 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * The configuration resolver interface */
export
interface
ConfigurationResolver
{
/** * Resolves a remote configuration * *
@param
{Record<string, any>} configuration the configuration obejct */
resolve
(
configuration
: Record<
string
, any>): Promise<Record<
string
, any>>; }