mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
/**
|
|
* Mock response for logo api
|
|
* @returns {promise}
|
|
*/
|
|
export default function<T>(): Promise<T> {
|
|
return Promise.resolve('http://localhost/-/static/logo.png');
|
|
}
|