5 lines
119 B
TypeScript
5 lines
119 B
TypeScript
export function getLocalAssetUri(hash: string, type: string | null): string | null {
|
|
// noop on web
|
|
return null;
|
|
}
|