UNPKG

estaminet

Version:

A set of WebComponents building on top of Statemint family of Polkadot parachains

10 lines (9 loc) 312 B
/** * Resolves a chunk of data into something that can be used as an image element `src` attribute. */ export interface SourceResolver { resolve(data: string): string | undefined; } export declare class IPFSGatewaySourceResolver implements SourceResolver { resolve(data: string): string | undefined; }