dotvvm-types 4.1.0-preview10-final → 4.1.0-preview11-final
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/package.json +1 -1
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ declare module "utils/logging" {
|
|
|
24
24
|
export function logWarning(area: string, ...args: any[]): void;
|
|
25
25
|
export function logError(area: string, ...args: any[]): void;
|
|
26
26
|
export function logPostBackScriptError(err: any): void;
|
|
27
|
+
/** puts the string in quotes, escaping weird characters if it is more complex than just letters */
|
|
28
|
+
export function debugQuoteString(s: string): string;
|
|
27
29
|
}
|
|
28
30
|
declare module "serialization/date" {
|
|
29
31
|
export function parseDate(value: string | null, convertFromUtc?: boolean): Date | null;
|