mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
9 lines
250 B
TypeScript
9 lines
250 B
TypeScript
import { AuthDemuxBase } from 'utils/auth/types';
|
|
import { Creds } from 'utils/types';
|
|
|
|
export class DummyAuthDemux extends AuthDemuxBase {
|
|
async getCreds(): Promise<Creds> {
|
|
return { errorLogUrl: '', tokenString: '', telemetryUrl: '' };
|
|
}
|
|
}
|