12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
/**
|
|
* @typedef {import('./types.js').Options} Options
|
|
* @typedef {import('./types.js').State} State
|
|
*/
|
|
/**
|
|
* @param {State} base
|
|
* @param {Options} extension
|
|
* @returns {State}
|
|
*/
|
|
export function configure(base: State, extension: Options): State
|
|
export type Options = import('./types.js').Options
|
|
export type State = import('./types.js').State
|