We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e811efd commit bfd8602Copy full SHA for bfd8602
packages/signals/signals/src/types/settings.ts
@@ -97,10 +97,10 @@ export interface SignalsPluginSettingsConfig {
97
mutationGenObservedRoles?: (defaultRoles: string[]) => string[]
98
/**
99
* @example
100
- * // add a new role to the roles
101
- * (defaultRoles) => [...defaultRoles, 'video']
102
- * // remove a role from the roles
103
- * (defaultRoles) => defaultRoles.filter(tag => tag.toLowerCase() !== 'video')
+ * // add a new tag to the tags
+ * (defaultTags) => [...defaultTags, 'video']
+ * // remove a tag from the tags
+ * (defaultTags) => defaultTags.filter(tag => tag.toLowerCase() !== 'video')
104
*/
105
mutationGenObservedTags?: (defaultTags: string[]) => string[]
106
0 commit comments