chore(picker): deprecate the refresh key (#25634)

resolves #25631
This commit is contained in:
Liam DeBeasi
2022-07-14 10:20:15 -04:00
committed by GitHub
parent 845cb463de
commit 827ab06d4d

View File

@ -42,6 +42,11 @@ export interface PickerColumn {
prefixWidth?: string;
suffixWidth?: string;
optionsWidth?: string;
/**
* @deprecated - Use the `columns` property on `ion-picker`
* to refresh the component view instead.
*/
refresh?: () => void;
}