Skip to content

Commit

Permalink
Cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
mheob committed Jul 25, 2023
1 parent 5b7dd77 commit d379488
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Snippets for Next.js, React in TypeScript

[![Version](https://vsmarketplacebadge.apphb.com/version-short/mheob.vscode-snippets.svg?style=for-the-badge&logo=visual-studio-code&logoColor=007ACC)](https://marketplace.visualstudio.com/items?itemName=mheob.vscode-snippets) [![GitHub issues](https://img.shields.io/github/issues/mheob/vscode-snippets?logo=github&style=for-the-badge)](https://github.com/mheob/vscode-snippets)
[![GitHub issues](https://img.shields.io/github/issues/mheob/vscode-snippets?logo=github&style=for-the-badge)](https://github.com/mheob/vscode-snippets)

This extension provides you Snippets for the development with Next.js, React in a TypeScript environment in [VS Code](https://code.visualstudio.com/).

Expand Down
2 changes: 1 addition & 1 deletion scripts/types.d.ts → scripts/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export declare type Snippet = {
export type Snippet = {
body: string[] | string;
description?: string;
prefix: string;
Expand Down
2 changes: 1 addition & 1 deletion scripts/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { readFile, readdir, writeFile } from 'node:fs/promises';
import { readdir, readFile, writeFile } from 'node:fs/promises';
import { join } from 'node:path';

import { CODE_SNIPPETS_EXTENSION, OUTPUT_DIRECTORY } from './constants';
Expand Down

0 comments on commit d379488

Please sign in to comment.