Use formatter for all Haxe code

This commit is contained in:
Joshua Granick
2019-02-14 08:41:20 -08:00
parent b4afa14a13
commit 0c163a80e7
638 changed files with 54759 additions and 59510 deletions

View File

@@ -1,9 +1,10 @@
package flash.data;
extern class EncryptedLocalStore {
static var isSupported(default,never) : Bool;
static function getItem(name : String) : flash.utils.ByteArray;
static function removeItem(name : String) : Void;
static function reset() : Void;
static function setItem(name : String, data : flash.utils.ByteArray, stronglyBound : Bool=false) : Void;
extern class EncryptedLocalStore
{
static var isSupported(default, never):Bool;
static function getItem(name:String):flash.utils.ByteArray;
static function removeItem(name:String):Void;
static function reset():Void;
static function setItem(name:String, data:flash.utils.ByteArray, stronglyBound:Bool = false):Void;
}