Skip to content

Commit d379488

Browse files
committed
Cleanup code
1 parent 5b7dd77 commit d379488

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Snippets for Next.js, React in TypeScript
22

3-
[![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)
3+
[![GitHub issues](https://img.shields.io/github/issues/mheob/vscode-snippets?logo=github&style=for-the-badge)](https://github.com/mheob/vscode-snippets)
44

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export declare type Snippet = {
1+
export type Snippet = {
22
body: string[] | string;
33
description?: string;
44
prefix: string;

scripts/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { readFile, readdir, writeFile } from 'node:fs/promises';
1+
import { readdir, readFile, writeFile } from 'node:fs/promises';
22
import { join } from 'node:path';
33

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

0 commit comments

Comments
 (0)