mirror of
https://github.com/frappe/books.git
synced 2025-02-09 07:29:07 +00:00
10 lines
313 B
TypeScript
10 lines
313 B
TypeScript
import { AuthDemuxBase } from 'utils/auth/types';
|
|
import { Creds } from 'utils/types';
|
|
|
|
export class DummyAuthDemux extends AuthDemuxBase {
|
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
async getCreds(): Promise<Creds> {
|
|
return { errorLogUrl: '', tokenString: '', telemetryUrl: '' };
|
|
}
|
|
}
|