mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-01 20:59:14 -04:00
Added typescript support for most backend files.
This commit is contained in:
parent
d6abab6c74
commit
331cf3d79f
46 changed files with 19975 additions and 7995 deletions
|
@ -54,7 +54,10 @@
|
|||
* There is one attribute pool per pad, and it includes every current and historical attribute used
|
||||
* in the pad.
|
||||
*/
|
||||
class AttributePool {
|
||||
export class AttributePool {
|
||||
numToAttrib: {};
|
||||
private attribToNum: {};
|
||||
private nextNum: number;
|
||||
constructor() {
|
||||
/**
|
||||
* Maps an attribute identifier to the attribute's `[key, value]` string pair.
|
Loading…
Add table
Add a link
Reference in a new issue