* Options for CommentCoreLibrary
| 34 | * Options for CommentCoreLibrary |
| 35 | */ |
| 36 | interface CCLOptions { |
| 37 | global: { |
| 38 | scale: number; |
| 39 | opacity: number; |
| 40 | className: string; |
| 41 | } |
| 42 | scroll: { |
| 43 | scale:number; |
| 44 | opacity:number; |
| 45 | } |
| 46 | scripting:{ |
| 47 | mode:Array<number>; |
| 48 | engine:IScriptingEngine; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | interface ICommentManager { |
| 53 | stage:any; |
nothing calls this directly
no outgoing calls
no test coverage detected