mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
feat(projects): page manage_role
This commit is contained in:
7
src/typings/common.d.ts
vendored
7
src/typings/common.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
/** The common type namespace */
|
||||
declare namespace Common {
|
||||
declare namespace CommonType {
|
||||
/** The strategic pattern */
|
||||
interface StrategicPattern {
|
||||
/** The condition */
|
||||
@ -17,4 +17,9 @@ declare namespace Common {
|
||||
type Option<K> = { value: K; label: string };
|
||||
|
||||
type YesOrNo = 'Y' | 'N';
|
||||
|
||||
/** add null to all properties */
|
||||
type RecordNullable<T> = {
|
||||
[K in keyof T]?: T[K] | null;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user