@3e/sqa-common 6.17.0-5 → 6.17.0-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +6 -0
- package/package.json +1 -1
- package/sqa_common.js +1362 -1342
package/index.d.ts
CHANGED
|
@@ -1696,6 +1696,12 @@ declare module '@3e/sqa-common' {
|
|
|
1696
1696
|
* @param sqid - The SQID of the object
|
|
1697
1697
|
*/
|
|
1698
1698
|
refFromLDTypeAndSQID(ldType: string, sqid: string): string | null
|
|
1699
|
+
|
|
1700
|
+
/**
|
|
1701
|
+
* Returns the refresh period for the view in milliseconds, or null if the view should not be refreshed
|
|
1702
|
+
* @param view - the view for which to receive the refresh period
|
|
1703
|
+
*/
|
|
1704
|
+
refreshPeriod(view: SQView): number | null
|
|
1699
1705
|
}
|
|
1700
1706
|
|
|
1701
1707
|
export const sqa: {
|