Skip to content
This repository was archived by the owner on May 15, 2022. It is now read-only.

Added optionLabels to type definitions for DatSelect. #76

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export class DatNumber extends React.Component<DatNumberProps, any> {}

export interface DatSelectProps extends DatChangableFieldProps {
options: any[];
optionLabels?: string[];
}

export class DatSelect extends React.Component<DatSelectProps, any> {}
Expand Down
1 change: 1 addition & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export class DatNumber extends React.Component<DatNumberProps, any> {}

export interface DatSelectProps extends DatChangableFieldProps {
options: any[];
optionLabels?: string[];
}

export class DatSelect extends React.Component<DatSelectProps, any> {}
Expand Down