@tracktor/shared-module 2.0.0-beta.12 → 2.0.0-beta.14
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/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,6 @@ export interface useAdapterParams {
|
|
|
12
12
|
export declare const useAdapter: (params?: useAdapterParams) => {
|
|
13
13
|
dateAdapter: (date: string | number | Date | null | undefined, format: string) => string;
|
|
14
14
|
distanceAdapter: (distance?: string | number | null | undefined, metric?: string) => string;
|
|
15
|
-
filePathAdapter: (path
|
|
15
|
+
filePathAdapter: (path?: string | null, size?: number | "full") => string;
|
|
16
16
|
};
|
|
17
17
|
export default useAdapter;
|