teableio/teable

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

Summary

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

export class SingleSelectField extends Mixin(SelectFieldSdk, SingleSelectFieldCore, Field) {}