1 |
|
2 | import * as nodePath from 'path';
|
3 | import { processNamespace } from './stylable-processor';
|
4 | export declare function packageNamespaceFactory(findConfig: (fileName: string, options: {
|
5 | cwd: string;
|
6 | }) => string | null, loadConfig: (filePath: string) => object, { dirname, relative }: Pick<typeof nodePath, 'relative' | 'dirname'>, hashSalt?: string, prefix?: string, normalizeVersion?: (semver: string) => string): typeof processNamespace;
|
7 | export declare function noCollisionNamespace({ prefix, used: usedNamespaces, }?: {
|
8 | prefix?: string | undefined;
|
9 | used?: Map<string, {
|
10 | prefix: string;
|
11 | namespace: string;
|
12 | stylesheetPath: string;
|
13 | }> | undefined;
|
14 | }): typeof processNamespace;
|
15 |
|
\ | No newline at end of file |