File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -160,8 +160,9 @@ export const PositionTitles = [
160160] as const ;
161161
162162// Union types
163- export type EngineeringPositionTitle = typeof EngineeringPositionTitles [ number ] ;
164- export type DesignPositionTitle = typeof DesignPositionTitles [ number ] ;
165- export type ProductPositionTitle = typeof ProductPositionTitles [ number ] ;
166- export type CommunityPositionTitle = typeof CommunityPositionTitles [ number ] ;
167- export type PositionTitle = typeof PositionTitles [ number ] ;
163+ export type EngineeringPositionTitle =
164+ ( typeof EngineeringPositionTitles ) [ number ] ;
165+ export type DesignPositionTitle = ( typeof DesignPositionTitles ) [ number ] ;
166+ export type ProductPositionTitle = ( typeof ProductPositionTitles ) [ number ] ;
167+ export type CommunityPositionTitle = ( typeof CommunityPositionTitles ) [ number ] ;
168+ export type PositionTitle = ( typeof PositionTitles ) [ number ] ;
You can’t perform that action at this time.
0 commit comments