Nicolas Daudin

Results 1 issues of Nicolas Daudin

Hi, I have this ``` export const AUTHORIZED_AIRPORT_TYPES = ['large_airport', 'medium_airport'] as const; export type AirportType = typeof AUTHORIZED_AIRPORT_TYPES[number]; ``` And I'm trying to do this ``` async getAll(filters: AirportType[]...