pankod/react-native-picker-modal-view

View on GitHub
src/Interfaces/IAlphabetsInDto.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IAlphabetsInDto {
    alphabets: string[];
    showAlphabeticalIndex: boolean;
    selectedAlpha?: string;

    setAlphabet: (alphabet: string) => void;
}