-
-
Notifications
You must be signed in to change notification settings - Fork 86
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Version
5.26.2
Describe the bug
Currently:
export const locales: Locales[] = [
'en-US',
'fr'
];Reproduction
Would be better to codegen:
export const locales = [
'en-US',
'fr'
] as const;Or:
export const locales = [
'en-US',
'fr'
] as const satisfies readonly [string, ...string[]];^ We can see the inlay hint is perfectly typed here.
Could also be codegen as:
export const locales = [
'en-US',
'fr'
] as const satisfies readonly Locales[];(Even if it could be pointless to use Locales here, depending on the reliability of the codegen.)
Logs
No response
Config
No response
Additional information
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
