UNPKG

@cran/lib.gql.core

Version:

GQL Core Functionality

17 lines (13 loc) 317 B
import { withMetadata } from "./withMetadata"; export namespace withCorePlugins { export interface Options { metadata?: withMetadata.Options; } } export function withCorePlugins ( config: withCorePlugins.Options = { } ) { return [ ...(config.metadata ? withMetadata(config.metadata) : [ ]), ]; }