Browse Source

fix(nocodb): ts issue

Ramesh Mane 2 days ago
parent
commit
350e813498
  1. 14
      packages/nocodb/src/models/CustomUrl.ts

14
packages/nocodb/src/models/CustomUrl.ts

@ -2,13 +2,13 @@ import type { CustomUrlType } from 'nocodb-sdk';
import Noco from '~/Noco'; import Noco from '~/Noco';
export default class CustomUrl implements CustomUrlType { export default class CustomUrl implements CustomUrlType {
id?: string; public id?: string;
fk_workspace_id?: string; public fk_workspace_id?: string;
base_id?: string; public base_id?: string;
fk_model_id?: string; public fk_model_id?: string;
view_id?: string; public view_id?: string;
original_path?: string; public original_path?: string;
custom_path?: string; public custom_path?: string;
constructor(customUrl: Partial<CustomUrl>) { constructor(customUrl: Partial<CustomUrl>) {
Object.assign(this, customUrl); Object.assign(this, customUrl);

Loading…
Cancel
Save