Kevin Fabre

Results 1 comments of Kevin Fabre

This is also the case when you try to create a type guard ```ts export function isDoughnutConfiguration(config: ChartConfiguration): config is ChartConfiguration { return (config as ChartConfiguration).type === 'doughnut'; } ```...