@dword-design/base 15.0.0 → 15.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ type PartialConfigObject = Omit<Partial<Config>, 'commands'> & {
|
|
|
54
54
|
};
|
|
55
55
|
type PartialConfigOrFunction = PartialConfigObject | ((this: Base, config: Config) => PartialConfigObject);
|
|
56
56
|
type PartialConfig = PartialConfigOrFunction | string | null;
|
|
57
|
-
export declare const defineBaseConfig: (configInput:
|
|
57
|
+
export declare const defineBaseConfig: <T>(configInput: T) => T;
|
|
58
58
|
declare class Base {
|
|
59
59
|
config: Config;
|
|
60
60
|
packageConfig: PackageJson;
|