Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Casheeew committed Dec 29, 2023
1 parent 30d77bc commit 03f44f8
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions types/ext/object-property-accessor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

export type ParsePathStringState = 'empty' | // Empty
'id-start' | // Identifier start
'id' | // Identifier
'open-bracket' | // Open bracket
'string' | // Quoted string
'number' | // Number
'close-bracket' | // Closing bracket after quoted string
'next'; // . or [
export type ParsePathStringState = (
'empty' // Empty
| 'id-start' // Identifier start
| 'id' // Identifier
| 'open-bracket' // Open bracket
| 'string' // Quoted string
| 'number' // Number
| 'close-bracket' // Closing bracket after quoted string
| 'next' // . or [
);

0 comments on commit 03f44f8

Please sign in to comment.