chore: removing unused export from the api-surface

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-01-10 14:25:31 +01:00
parent 908378f062
commit cc55b6ef6c
3 changed files with 1 additions and 9 deletions
-6
View File
@@ -336,12 +336,6 @@ export interface ScaffolderUseTemplateSecrets {
setSecrets: (input: Record<string, string>) => void;
}
// @public
export type SecretsContextContents = {
secrets: Record<string, string>;
setSecrets: React_2.Dispatch<React_2.SetStateAction<Record<string, string>>>;
};
// @public
export const SecretsContextProvider: ({
children,
@@ -26,9 +26,8 @@ import React, {
/**
* The contents of the `SecretsContext`
* @public
*/
export type SecretsContextContents = {
type SecretsContextContents = {
secrets: Record<string, string>;
setSecrets: React.Dispatch<React.SetStateAction<Record<string, string>>>;
};
@@ -17,5 +17,4 @@ export {
useTemplateSecrets,
SecretsContextProvider,
type ScaffolderUseTemplateSecrets,
type SecretsContextContents,
} from './SecretsContext';