Skip to content

Commit e40f895

Browse files
committed
Convert SuperSelect::Placeholder to TypeScript
1 parent 07fdab3 commit e40f895

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

packages/components/src/components/hds/form/super-select/placeholder.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
{{! @glint-nocheck: not typesafe yet }}
21
{{!
32
Copyright (c) HashiCorp, Inc.
43
SPDX-License-Identifier: MPL-2.0
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import templateOnlyComponent from '@ember/component/template-only';
2+
3+
interface HdsFormSuperSelectPlaceholderSignature {
4+
Args: {
5+
placeholder?: string;
6+
};
7+
}
8+
9+
const HdsFormSuperSelectPlaceholderComponent =
10+
templateOnlyComponent<HdsFormSuperSelectPlaceholderSignature>();
11+
12+
export default HdsFormSuperSelectPlaceholderComponent;

0 commit comments

Comments
 (0)