I'm currently utilizing the angular-gridster2 library and I am looking to add two additional properties in the gridsterItem interface to hold some specific values. How can this be achieved? Despite creating an extended interface of their own, the package seems to prioritize its internal property.
export interface GridsterItemCustomInterface extends GridsterItemComponentInterface {
customProperty1?: boolean;
customProperty2?: Config;
}