##// END OF EJS Templates
Added tag v1.0.4 for changeset 03f3149f6507
Added tag v1.0.4 for changeset 03f3149f6507

File last commit:

r0:ab570232df7d default
r15:4476d1cdf4fc default
Show More
string.d.ts
30 lines | 737 B | video/mp2t | TypeScriptLexer
declare namespace dojox {
namespace string {
/* dojox/string/BidiEngine */
interface BidiEngine {
/**
* Central public API for Bidi engine. Transforms the text according to
* formatIn, formatOut parameters. If formatIn or formatOut parametrs are
* not valid throws an exception.
*/
bidiTransform(text: string, formatIn: string, formatOut: string): string;
/**
* Determine the base direction of a bidi text according to its first strong
* directional character.
*/
checkContextual(text: string): string;
/**
* Return true if text contains RTL directed character.
*/
hasBidiChar(text: string): boolean;
}
interface BidiEngineConstructor {
new (): BidiEngine;
}
}
}