ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
624 B
23 lines
624 B
/** |
|
* Property helper functions. |
|
* |
|
* @_subsection api/utils:Properties [about-properties] |
|
*/ |
|
/** |
|
* Resolves to a new object that is a copy of %%value%%, but with all |
|
* values resolved. |
|
*/ |
|
export declare function resolveProperties<T>(value: { |
|
[P in keyof T]: T[P] | Promise<T[P]>; |
|
}): Promise<T>; |
|
/** |
|
* Assigns the %%values%% to %%target%% as read-only values. |
|
* |
|
* It %%types%% is specified, the values are checked. |
|
*/ |
|
export declare function defineProperties<T>(target: T, values: { |
|
[K in keyof T]?: T[K]; |
|
}, types?: { |
|
[K in keyof T]?: string; |
|
}): void; |
|
//# sourceMappingURL=properties.d.ts.map
|