chore: removing unused export from the api-surface
Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user