Refactor #3797 - Use camelcase for pt

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-19 11:00:52 +03:00
parent ebd8e6283b
commit afda38b1eb
9 changed files with 30 additions and 30 deletions

View file

@ -29,17 +29,17 @@ export interface ToolbarPassThroughOptions {
*/
root?: ToolbarPassThroughOptionType;
/**
* Uses to pass attributes to the groupstart's DOM element.
* Uses to pass attributes to the start's DOM element.
*/
groupStart?: ToolbarPassThroughOptionType;
start?: ToolbarPassThroughOptionType;
/**
* Uses to pass attributes to the groupcenter's DOM element.
* Uses to pass attributes to the center's DOM element.
*/
groupCenter?: ToolbarPassThroughOptionType;
center?: ToolbarPassThroughOptionType;
/**
* Uses to pass attributes to the groupright's DOM element.
* Uses to pass attributes to the right's DOM element.
*/
groupEnd?: ToolbarPassThroughOptionType;
end?: ToolbarPassThroughOptionType;
}
/**