Skip to content

Commit 589bad4

Browse files
committed
chore: remove unused exports
1 parent ef6fda1 commit 589bad4

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/client/snippets.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type Snippet = {
2727
snippet: SnippetFunc;
2828
};
2929

30-
export const input: SnippetFunc = (
30+
const input: SnippetFunc = (
3131
name,
3232
order,
3333
) => `data "coder_parameter" "text-input" {
@@ -45,7 +45,7 @@ export const input: SnippetFunc = (
4545
default = "An input value"
4646
}`;
4747

48-
export const textarea: SnippetFunc = (
48+
const textarea: SnippetFunc = (
4949
name,
5050
order,
5151
) => `data "coder_parameter" "textarea" {
@@ -63,7 +63,7 @@ export const textarea: SnippetFunc = (
6363
default = "An input value"
6464
}`;
6565

66-
export const radio: SnippetFunc = (
66+
const radio: SnippetFunc = (
6767
name,
6868
order,
6969
) => `data "coder_parameter" "radio" {
@@ -101,7 +101,7 @@ export const radio: SnippetFunc = (
101101
}
102102
}`;
103103

104-
export const dropdown: SnippetFunc = (
104+
const dropdown: SnippetFunc = (
105105
name,
106106
order,
107107
) => `data "coder_parameter" "dropdown" {
@@ -143,7 +143,7 @@ export const dropdown: SnippetFunc = (
143143
}
144144
}`;
145145

146-
export const multiSelect: SnippetFunc = (
146+
const multiSelect: SnippetFunc = (
147147
name,
148148
order,
149149
) => `data "coder_parameter" "multi-select" {
@@ -180,7 +180,7 @@ export const multiSelect: SnippetFunc = (
180180
}
181181
}`;
182182

183-
export const tagSelect: SnippetFunc = (
183+
const tagSelect: SnippetFunc = (
184184
name,
185185
order,
186186
) => `data "coder_parameter" "tag-select" {
@@ -193,7 +193,7 @@ export const tagSelect: SnippetFunc = (
193193
form_type = "tag-select"
194194
}`;
195195

196-
export const switchInput: SnippetFunc = (
196+
const switchInput: SnippetFunc = (
197197
name,
198198
order,
199199
) => `data "coder_parameter" "switch" {
@@ -207,7 +207,7 @@ export const switchInput: SnippetFunc = (
207207
default = true
208208
}`;
209209

210-
export const slider: SnippetFunc = (
210+
const slider: SnippetFunc = (
211211
name,
212212
order,
213213
) => `data "coder_parameter" "slider" {

src/server/blob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { nanoid } from "nanoid";
33
import * as v from "valibot";
44
import { UserSchema } from "@/user";
55

6-
export const BLOG_PATH = "parameters/share";
6+
const BLOG_PATH = "parameters/share";
77

88
export const ShareDataSchema = v.object({
99
code: v.string(),

0 commit comments

Comments
 (0)