mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-06-17 01:49:13 +08:00
7 lines
357 B
Text
7 lines
357 B
Text
import { UserConfig } from '@unocss/core';
|
|
import { LoadConfigSource, LoadConfigResult } from 'unconfig';
|
|
export { LoadConfigResult, LoadConfigSource } from 'unconfig';
|
|
|
|
declare function loadConfig<U extends UserConfig>(cwd?: string, configOrPath?: string | U, extraConfigSources?: LoadConfigSource[]): Promise<LoadConfigResult<U>>;
|
|
|
|
export { loadConfig };
|