mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 11:49:30 +08:00
12 lines
370 B
Text
12 lines
370 B
Text
/**
|
|
* @typedef {import('./types.js').Options} Options
|
|
* @typedef {import('./types.js').Context} Context
|
|
*/
|
|
/**
|
|
* @param {Context} base
|
|
* @param {Options} extension
|
|
* @returns {Context}
|
|
*/
|
|
export function configure(base: Context, extension: Options): Context;
|
|
export type Options = import('./types.js').Options;
|
|
export type Context = import('./types.js').Context;
|