teableio/teable

View on GitHub
packages/sdk/src/model/field/multiple-select.field.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { MultipleSelectFieldCore } from '@teable/core';
import { Mixin } from 'ts-mixer';
import { Field } from './field';
import { SelectFieldSdk } from './mixin/select.field';

export class MultipleSelectField extends Mixin(SelectFieldSdk, MultipleSelectFieldCore, Field) {}