移除 auth文件

This commit is contained in:
Wang Kejun 2023-11-16 20:02:29 +08:00
parent 8eb172ec01
commit 13f7029022
10 changed files with 0 additions and 66 deletions

4
es/auth/index.d.ts vendored
View File

@ -1,4 +0,0 @@
import { AuthDefDict } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
declare const _default: AuthDefDict<EntityDict>;
export default _default;

View File

@ -1,3 +0,0 @@
export default {
// mobile,
};

4
es/auth/mobile.d.ts vendored
View File

@ -1,4 +0,0 @@
import { AuthDef } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
declare const authDef: AuthDef<EntityDict, 'mobile'>;
export default authDef;

View File

@ -1,9 +0,0 @@
const userAuth = {
cascadePath: '',
};
const authDef = {
actionAuth: {
create: [userAuth],
}
};
export default authDef;

4
lib/auth/index.d.ts vendored
View File

@ -1,4 +0,0 @@
import { AuthDefDict } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
declare const _default: AuthDefDict<EntityDict>;
export default _default;

View File

@ -1,5 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
// mobile,
};

View File

@ -1,4 +0,0 @@
import { AuthDef } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
declare const authDef: AuthDef<EntityDict, 'mobile'>;
export default authDef;

View File

@ -1,11 +0,0 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const userAuth = {
cascadePath: '',
};
const authDef = {
actionAuth: {
create: [userAuth],
}
};
exports.default = authDef;

View File

@ -1,8 +0,0 @@
import { AuthDefDict } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
import mobile from './mobile';
export default {
// mobile,
} as AuthDefDict<EntityDict>;

View File

@ -1,14 +0,0 @@
import { AuthDef } from 'oak-domain/lib/types/Auth';
import { EntityDict } from '../oak-app-domain';
const userAuth = {
cascadePath: '',
}
const authDef: AuthDef<EntityDict, 'mobile'> = {
actionAuth: {
create: [userAuth],
}
};
export default authDef;