@microsoft/terraform-cdk-constructs 0.0.3-pre.7 → 1.0.0
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/.devcontainer/devcontainer.json +2 -2
- package/.jsii +22878 -10724
- package/API.md +25087 -9636
- package/LICENSE +16 -18
- package/README.md +147 -72
- package/cdktf.json +1 -1
- package/docs/ARCHITECTURE.md +836 -0
- package/docs/azapi-testing-architecture.md +482 -0
- package/docs/testing.md +39 -137
- package/docs/versioning-and-migrations-user-guide.md +409 -0
- package/go.mod +12 -12
- package/go.sum +27 -23
- package/lib/azure-resourcegroup/index.d.ts +37 -0
- package/lib/azure-resourcegroup/index.js +39 -1
- package/lib/azure-resourcegroup/lib/index.d.ts +44 -0
- package/lib/azure-resourcegroup/lib/index.js +43 -1
- package/lib/azure-resourcegroup/lib/resource-group-schemas.d.ts +40 -0
- package/lib/azure-resourcegroup/lib/resource-group-schemas.js +243 -0
- package/lib/azure-resourcegroup/lib/resource-group.d.ts +170 -46
- package/lib/azure-resourcegroup/lib/resource-group.js +222 -56
- package/lib/azure-resourcegroup/test/resource-group.integ.d.ts +9 -0
- package/lib/azure-resourcegroup/test/resource-group.integ.js +60 -0
- package/lib/azure-resourcegroup/test/resource-group.spec.d.ts +9 -0
- package/lib/azure-resourcegroup/test/resource-group.spec.js +554 -0
- package/lib/azure-storageaccount/index.d.ts +19 -0
- package/lib/azure-storageaccount/index.js +20 -1
- package/lib/azure-storageaccount/lib/index.d.ts +8 -5
- package/lib/azure-storageaccount/lib/index.js +9 -6
- package/lib/azure-storageaccount/lib/storage-account-schemas.d.ts +40 -0
- package/lib/azure-storageaccount/lib/storage-account-schemas.js +378 -0
- package/lib/azure-storageaccount/lib/storage-account.d.ts +311 -0
- package/lib/azure-storageaccount/lib/storage-account.js +229 -0
- package/lib/azure-storageaccount/test/storage-account.integ.d.ts +9 -0
- package/lib/azure-storageaccount/test/storage-account.integ.js +72 -0
- package/lib/azure-storageaccount/test/storage-account.spec.d.ts +4 -0
- package/lib/azure-storageaccount/test/storage-account.spec.js +315 -0
- package/lib/core-azure/lib/azapi/azapi-exports.d.ts +16 -0
- package/lib/core-azure/lib/azapi/azapi-exports.js +38 -0
- package/lib/core-azure/lib/azapi/azapi-resource.d.ts +413 -0
- package/lib/core-azure/lib/azapi/azapi-resource.js +468 -0
- package/lib/core-azure/lib/azapi/azapi-resource.spec.d.ts +7 -0
- package/lib/core-azure/lib/azapi/azapi-resource.spec.js +545 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.d.ts +62 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-client-config/index.js +161 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.d.ts +327 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource/index.js +521 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.d.ts +331 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-action/index.js +436 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.d.ts +116 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-id/index.js +213 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.d.ts +272 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-azapi-resource-list/index.js +368 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.d.ts +505 -0
- package/lib/core-azure/lib/azapi/providers-azapi/data-plane-resource/index.js +620 -0
- package/lib/core-azure/lib/azapi/providers-azapi/index.d.ts +10 -0
- package/lib/core-azure/lib/azapi/providers-azapi/index.js +15 -0
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.d.ts +435 -0
- package/lib/core-azure/lib/azapi/providers-azapi/provider/index.js +584 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.d.ts +675 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource/index.js +856 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.d.ts +387 -0
- package/lib/core-azure/lib/azapi/providers-azapi/resource-action/index.js +531 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.d.ts +437 -0
- package/lib/core-azure/lib/azapi/providers-azapi/update-resource/index.js +589 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.d.ts +215 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.js +565 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.spec.d.ts +7 -0
- package/lib/core-azure/lib/azapi/schema-mapper/schema-mapper.spec.js +630 -0
- package/lib/core-azure/lib/index.d.ts +18 -3
- package/lib/core-azure/lib/index.js +24 -4
- package/lib/core-azure/lib/version-manager/api-version-manager.d.ts +253 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.js +509 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.spec.d.ts +7 -0
- package/lib/core-azure/lib/version-manager/api-version-manager.spec.js +510 -0
- package/lib/core-azure/lib/version-manager/interfaces/version-interfaces.d.ts +669 -0
- package/lib/core-azure/lib/version-manager/interfaces/version-interfaces.js +202 -0
- package/lib/core-azure/lib/version-manager/version-manager.d.ts +9 -0
- package/lib/core-azure/lib/version-manager/version-manager.js +23 -0
- package/lib/index.d.ts +20 -16
- package/lib/index.js +41 -18
- package/lib/testing/index.d.ts +33 -0
- package/lib/testing/index.js +238 -2
- package/lib/util/azureTenantIdHelpers.js +3 -4
- package/lib/util/randomName.js +2 -3
- package/package.json +53 -40
- package/cdktf.out/manifest.json +0 -13
- package/cdktf.out/stacks/testAzureActionGroup/cdk.tf.json +0 -111
- package/cdktf.out/stacks/testAzureApplicationGateway/cdk.tf.json +0 -588
- package/cdktf.out/stacks/testAzureApplicationInsights/cdk.tf.json +0 -245
- package/cdktf.out/stacks/testAzureContainerRegistry/cdk.tf.json +0 -179
- package/cdktf.out/stacks/testAzureEventhub/cdk.tf.json +0 -236
- package/cdktf.out/stacks/testAzureKeyVault/cdk.tf.json +0 -436
- package/cdktf.out/stacks/testAzureKubernetesCluster/cdk.tf.json +0 -152
- package/cdktf.out/stacks/testAzureKusto/cdk.tf.json +0 -209
- package/cdktf.out/stacks/testAzureLinuxFunctionApp/cdk.tf.json +0 -439
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineExample/cdk.tf.json +0 -283
- package/cdktf.out/stacks/testAzureLinuxVirtualMachineScaleSetExample/cdk.tf.json +0 -261
- package/cdktf.out/stacks/testAzureLogAnalytics/cdk.tf.json +0 -309
- package/cdktf.out/stacks/testAzureMetricAlert/cdk.tf.json +0 -161
- package/cdktf.out/stacks/testAzureNetworkSecurityGroup/cdk.tf.json +0 -271
- package/cdktf.out/stacks/testAzureQueryRuleAlert/cdk.tf.json +0 -122
- package/cdktf.out/stacks/testAzureResourceGroup/cdk.tf.json +0 -88
- package/cdktf.out/stacks/testAzureStorageAccount/cdk.tf.json +0 -339
- package/cdktf.out/stacks/testAzureVirtualNetwork/cdk.tf.json +0 -264
- package/cdktf.out/stacks/testAzureWindowVirtualMachineScaleSetExample/cdk.tf.json +0 -261
- package/cdktf.out/stacks/testAzureWindowsVirtualMachineExample/cdk.tf.json +0 -280
- package/cdktf.out/stacks/testExampleAzureResource/cdk.tf.json +0 -167
- package/lib/azure-actiongroup/index.d.ts +0 -1
- package/lib/azure-actiongroup/index.js +0 -18
- package/lib/azure-actiongroup/lib/actiongroup.d.ts +0 -49
- package/lib/azure-actiongroup/lib/actiongroup.js +0 -85
- package/lib/azure-actiongroup/lib/index.d.ts +0 -1
- package/lib/azure-actiongroup/lib/index.js +0 -18
- package/lib/azure-actiongroup/model/action-group-props.d.ts +0 -47
- package/lib/azure-actiongroup/model/action-group-props.js +0 -3
- package/lib/azure-actiongroup/model/arm-role-receiver-props.d.ts +0 -20
- package/lib/azure-actiongroup/model/arm-role-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.d.ts +0 -14
- package/lib/azure-actiongroup/model/azure-app-push-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/email-receiver-props.d.ts +0 -19
- package/lib/azure-actiongroup/model/email-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/eventhub-receiver-props.d.ts +0 -23
- package/lib/azure-actiongroup/model/eventhub-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/function.d.ts +0 -40
- package/lib/azure-actiongroup/model/function.js +0 -118
- package/lib/azure-actiongroup/model/index.d.ts +0 -10
- package/lib/azure-actiongroup/model/index.js +0 -27
- package/lib/azure-actiongroup/model/logic-app-receiver-props.d.ts +0 -23
- package/lib/azure-actiongroup/model/logic-app-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/sms-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/sms-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/voice-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/voice-receiver-props.js +0 -3
- package/lib/azure-actiongroup/model/webhook-receiver-props.d.ts +0 -18
- package/lib/azure-actiongroup/model/webhook-receiver-props.js +0 -3
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.d.ts +0 -1
- package/lib/azure-actiongroup/test/AzureActionGroup.spec.js +0 -294
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.d.ts +0 -5
- package/lib/azure-actiongroup/test/ExampleAzureActionGroup.js +0 -66
- package/lib/azure-applicationgateway/index.d.ts +0 -1
- package/lib/azure-applicationgateway/index.js +0 -18
- package/lib/azure-applicationgateway/lib/gateway.d.ts +0 -248
- package/lib/azure-applicationgateway/lib/gateway.js +0 -199
- package/lib/azure-applicationgateway/lib/index.d.ts +0 -1
- package/lib/azure-applicationgateway/lib/index.js +0 -18
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.d.ts +0 -1
- package/lib/azure-applicationgateway/test/AzureApplicationGateway.spec.js +0 -106
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.d.ts +0 -5
- package/lib/azure-applicationgateway/test/ExampleAzureApplicationGateway.js +0 -267
- package/lib/azure-applicationinsights/index.d.ts +0 -1
- package/lib/azure-applicationinsights/index.js +0 -18
- package/lib/azure-applicationinsights/lib/appinsights.d.ts +0 -110
- package/lib/azure-applicationinsights/lib/appinsights.js +0 -134
- package/lib/azure-applicationinsights/lib/index.d.ts +0 -1
- package/lib/azure-applicationinsights/lib/index.js +0 -18
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.d.ts +0 -1
- package/lib/azure-applicationinsights/test/AzureAppInsights.spec.js +0 -55
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.d.ts +0 -5
- package/lib/azure-applicationinsights/test/ExampleAzureApplicationInsights.js +0 -87
- package/lib/azure-containerregistry/index.d.ts +0 -1
- package/lib/azure-containerregistry/index.js +0 -18
- package/lib/azure-containerregistry/lib/index.d.ts +0 -1
- package/lib/azure-containerregistry/lib/index.js +0 -18
- package/lib/azure-containerregistry/lib/registry.d.ts +0 -70
- package/lib/azure-containerregistry/lib/registry.js +0 -76
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.d.ts +0 -1
- package/lib/azure-containerregistry/test/AzureContainerRegistry.spec.js +0 -50
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.d.ts +0 -5
- package/lib/azure-containerregistry/test/ExampleAzureContainerRegistry.js +0 -57
- package/lib/azure-datalake/index.d.ts +0 -1
- package/lib/azure-datalake/index.js +0 -18
- package/lib/azure-datalake/lib/datalake.d.ts +0 -64
- package/lib/azure-datalake/lib/datalake.js +0 -92
- package/lib/azure-datalake/lib/filesystem.d.ts +0 -70
- package/lib/azure-datalake/lib/filesystem.js +0 -83
- package/lib/azure-datalake/lib/index.d.ts +0 -3
- package/lib/azure-datalake/lib/index.js +0 -20
- package/lib/azure-datalake/lib/path.d.ts +0 -49
- package/lib/azure-datalake/lib/path.js +0 -51
- package/lib/azure-eventhub/index.d.ts +0 -1
- package/lib/azure-eventhub/index.js +0 -18
- package/lib/azure-eventhub/lib/authorization.d.ts +0 -58
- package/lib/azure-eventhub/lib/authorization.js +0 -84
- package/lib/azure-eventhub/lib/cluster.d.ts +0 -56
- package/lib/azure-eventhub/lib/cluster.js +0 -64
- package/lib/azure-eventhub/lib/consumer.d.ts +0 -54
- package/lib/azure-eventhub/lib/consumer.js +0 -59
- package/lib/azure-eventhub/lib/index.d.ts +0 -6
- package/lib/azure-eventhub/lib/index.js +0 -23
- package/lib/azure-eventhub/lib/instance.d.ts +0 -164
- package/lib/azure-eventhub/lib/instance.js +0 -184
- package/lib/azure-eventhub/lib/kusto-connection.d.ts +0 -109
- package/lib/azure-eventhub/lib/kusto-connection.js +0 -76
- package/lib/azure-eventhub/lib/namespace.d.ts +0 -151
- package/lib/azure-eventhub/lib/namespace.js +0 -131
- package/lib/azure-eventhub/test/AzureEventhub.spec.d.ts +0 -1
- package/lib/azure-eventhub/test/AzureEventhub.spec.js +0 -56
- package/lib/azure-eventhub/test/ExampleAzureEventhub.d.ts +0 -5
- package/lib/azure-eventhub/test/ExampleAzureEventhub.js +0 -72
- package/lib/azure-functionapp/index.d.ts +0 -1
- package/lib/azure-functionapp/index.js +0 -18
- package/lib/azure-functionapp/lib/functionapplinux.d.ts +0 -211
- package/lib/azure-functionapp/lib/functionapplinux.js +0 -141
- package/lib/azure-functionapp/lib/index.d.ts +0 -1
- package/lib/azure-functionapp/lib/index.js +0 -18
- package/lib/azure-functionapp/serviceplanskus.d.ts +0 -70
- package/lib/azure-functionapp/serviceplanskus.js +0 -81
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.d.ts +0 -1
- package/lib/azure-functionapp/test/AzureLinuxFunctionApp.spec.js +0 -48
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.d.ts +0 -5
- package/lib/azure-functionapp/test/ExampleAzureLinuxFunctionApp.js +0 -123
- package/lib/azure-keyvault/index.d.ts +0 -1
- package/lib/azure-keyvault/index.js +0 -18
- package/lib/azure-keyvault/lib/certificate.d.ts +0 -133
- package/lib/azure-keyvault/lib/certificate.js +0 -146
- package/lib/azure-keyvault/lib/index.d.ts +0 -5
- package/lib/azure-keyvault/lib/index.js +0 -22
- package/lib/azure-keyvault/lib/key.d.ts +0 -72
- package/lib/azure-keyvault/lib/key.js +0 -69
- package/lib/azure-keyvault/lib/policy.d.ts +0 -76
- package/lib/azure-keyvault/lib/policy.js +0 -56
- package/lib/azure-keyvault/lib/secret.d.ts +0 -70
- package/lib/azure-keyvault/lib/secret.js +0 -64
- package/lib/azure-keyvault/lib/vault.d.ts +0 -282
- package/lib/azure-keyvault/lib/vault.js +0 -392
- package/lib/azure-keyvault/test/AzureKeyVault.spec.d.ts +0 -1
- package/lib/azure-keyvault/test/AzureKeyVault.spec.js +0 -63
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.d.ts +0 -5
- package/lib/azure-keyvault/test/ExampleAzureKeyVault.js +0 -112
- package/lib/azure-kubernetes/index.d.ts +0 -1
- package/lib/azure-kubernetes/index.js +0 -18
- package/lib/azure-kubernetes/lib/cluster.d.ts +0 -93
- package/lib/azure-kubernetes/lib/cluster.js +0 -63
- package/lib/azure-kubernetes/lib/index.d.ts +0 -1
- package/lib/azure-kubernetes/lib/index.js +0 -18
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.d.ts +0 -1
- package/lib/azure-kubernetes/test/AzureKubernetesCluster.spec.js +0 -56
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.d.ts +0 -5
- package/lib/azure-kubernetes/test/ExampleAzureKubernetesCluster.js +0 -65
- package/lib/azure-kusto/index.d.ts +0 -1
- package/lib/azure-kusto/index.js +0 -18
- package/lib/azure-kusto/lib/cluster.d.ts +0 -136
- package/lib/azure-kusto/lib/cluster.js +0 -138
- package/lib/azure-kusto/lib/compute-specification.d.ts +0 -71
- package/lib/azure-kusto/lib/compute-specification.js +0 -651
- package/lib/azure-kusto/lib/database.d.ts +0 -162
- package/lib/azure-kusto/lib/database.js +0 -180
- package/lib/azure-kusto/lib/index.d.ts +0 -3
- package/lib/azure-kusto/lib/index.js +0 -20
- package/lib/azure-kusto/test/AzureKusto.spec.d.ts +0 -1
- package/lib/azure-kusto/test/AzureKusto.spec.js +0 -50
- package/lib/azure-kusto/test/ExampleAzureKusto.d.ts +0 -5
- package/lib/azure-kusto/test/ExampleAzureKusto.js +0 -71
- package/lib/azure-loganalytics/index.d.ts +0 -1
- package/lib/azure-loganalytics/index.js +0 -18
- package/lib/azure-loganalytics/lib/index.d.ts +0 -1
- package/lib/azure-loganalytics/lib/index.js +0 -18
- package/lib/azure-loganalytics/lib/workspace.d.ts +0 -163
- package/lib/azure-loganalytics/lib/workspace.js +0 -126
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.d.ts +0 -1
- package/lib/azure-loganalytics/test/AzureLogAnalytics.spec.js +0 -50
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.d.ts +0 -5
- package/lib/azure-loganalytics/test/ExampleAzureLogAnalytics.js +0 -115
- package/lib/azure-metricalert/index.d.ts +0 -2
- package/lib/azure-metricalert/index.js +0 -19
- package/lib/azure-metricalert/lib/index.d.ts +0 -1
- package/lib/azure-metricalert/lib/index.js +0 -18
- package/lib/azure-metricalert/lib/metric-alert.d.ts +0 -56
- package/lib/azure-metricalert/lib/metric-alert.js +0 -128
- package/lib/azure-metricalert/model/action-props.d.ts +0 -11
- package/lib/azure-metricalert/model/action-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-base-props.d.ts +0 -38
- package/lib/azure-metricalert/model/criteria-base-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-dimension-props.d.ts +0 -21
- package/lib/azure-metricalert/model/criteria-dimension-props.js +0 -3
- package/lib/azure-metricalert/model/criteria-props.d.ts +0 -12
- package/lib/azure-metricalert/model/criteria-props.js +0 -3
- package/lib/azure-metricalert/model/dynamic-criteria-props.d.ts +0 -29
- package/lib/azure-metricalert/model/dynamic-criteria-props.js +0 -3
- package/lib/azure-metricalert/model/function.d.ts +0 -28
- package/lib/azure-metricalert/model/function.js +0 -78
- package/lib/azure-metricalert/model/index.d.ts +0 -7
- package/lib/azure-metricalert/model/index.js +0 -24
- package/lib/azure-metricalert/model/metric-alert-props.d.ts +0 -86
- package/lib/azure-metricalert/model/metric-alert-props.js +0 -3
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.d.ts +0 -1
- package/lib/azure-metricalert/test/AzureMetricAlert.spec.js +0 -63
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.d.ts +0 -5
- package/lib/azure-metricalert/test/ExampleAzureMetricAlert.js +0 -81
- package/lib/azure-networksecuritygroup/index.d.ts +0 -1
- package/lib/azure-networksecuritygroup/index.js +0 -18
- package/lib/azure-networksecuritygroup/lib/index.d.ts +0 -2
- package/lib/azure-networksecuritygroup/lib/index.js +0 -19
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.d.ts +0 -77
- package/lib/azure-networksecuritygroup/lib/preconfigured-rules.js +0 -608
- package/lib/azure-networksecuritygroup/lib/securitygroup.d.ts +0 -190
- package/lib/azure-networksecuritygroup/lib/securitygroup.js +0 -172
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.d.ts +0 -1
- package/lib/azure-networksecuritygroup/test/AzureNetworkSecurityGroup.spec.js +0 -54
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.d.ts +0 -5
- package/lib/azure-networksecuritygroup/test/ExampleAzureNetworkSecurityGroup.js +0 -97
- package/lib/azure-queryrulealert/index.d.ts +0 -1
- package/lib/azure-queryrulealert/index.js +0 -18
- package/lib/azure-queryrulealert/lib/index.d.ts +0 -1
- package/lib/azure-queryrulealert/lib/index.js +0 -18
- package/lib/azure-queryrulealert/lib/query-rule-alert.d.ts +0 -175
- package/lib/azure-queryrulealert/lib/query-rule-alert.js +0 -205
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.d.ts +0 -1
- package/lib/azure-queryrulealert/test/AzureQueryRuleAlert.spec.js +0 -67
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.d.ts +0 -5
- package/lib/azure-queryrulealert/test/ExampleAzureQueryRuleAlert.js +0 -67
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.d.ts +0 -1
- package/lib/azure-resourcegroup/test/AzureResourceGroup.spec.js +0 -41
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.d.ts +0 -5
- package/lib/azure-resourcegroup/test/ExampleAzureResourceGroup.js +0 -29
- package/lib/azure-storageaccount/lib/account.d.ts +0 -232
- package/lib/azure-storageaccount/lib/account.js +0 -225
- package/lib/azure-storageaccount/lib/container.d.ts +0 -122
- package/lib/azure-storageaccount/lib/container.js +0 -167
- package/lib/azure-storageaccount/lib/fileshare.d.ts +0 -105
- package/lib/azure-storageaccount/lib/fileshare.js +0 -126
- package/lib/azure-storageaccount/lib/queue.d.ts +0 -35
- package/lib/azure-storageaccount/lib/queue.js +0 -52
- package/lib/azure-storageaccount/lib/table.d.ts +0 -38
- package/lib/azure-storageaccount/lib/table.js +0 -55
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.d.ts +0 -1
- package/lib/azure-storageaccount/test/AzureStorageAccount.spec.js +0 -45
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.d.ts +0 -5
- package/lib/azure-storageaccount/test/ExampleAzureStorageAccount.js +0 -102
- package/lib/azure-virtualmachine/index.d.ts +0 -1
- package/lib/azure-virtualmachine/index.js +0 -18
- package/lib/azure-virtualmachine/lib/image-references.d.ts +0 -22
- package/lib/azure-virtualmachine/lib/image-references.js +0 -128
- package/lib/azure-virtualmachine/lib/index.d.ts +0 -2
- package/lib/azure-virtualmachine/lib/index.js +0 -19
- package/lib/azure-virtualmachine/lib/vm.d.ts +0 -281
- package/lib/azure-virtualmachine/lib/vm.js +0 -283
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.d.ts +0 -1
- package/lib/azure-virtualmachine/test/AzureLinuxVirtualMachine.spec.js +0 -48
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.d.ts +0 -1
- package/lib/azure-virtualmachine/test/AzureWindowsVirtualMachine.spec.js +0 -50
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.d.ts +0 -5
- package/lib/azure-virtualmachine/test/ExampleAzureLinuxVirtualMachine.js +0 -106
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.d.ts +0 -5
- package/lib/azure-virtualmachine/test/ExampleAzureWindowsVirtualMachine.js +0 -102
- package/lib/azure-virtualmachinescaleset/index.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/index.js +0 -18
- package/lib/azure-virtualmachinescaleset/lib/cluster.d.ts +0 -324
- package/lib/azure-virtualmachinescaleset/lib/cluster.js +0 -264
- package/lib/azure-virtualmachinescaleset/lib/index.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/lib/index.js +0 -18
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/test/AzureLinuxVirtualMachineScaleSet.spec.js +0 -48
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.d.ts +0 -1
- package/lib/azure-virtualmachinescaleset/test/AzureWindowsVirtualMachineScaleSet.spec.js +0 -50
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.d.ts +0 -5
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureLinuxVirtualMachineScaleSet.js +0 -107
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.d.ts +0 -5
- package/lib/azure-virtualmachinescaleset/test/ExampleAzureWindowsVirtualMachineScaleSet.js +0 -103
- package/lib/azure-virtualnetwork/index.d.ts +0 -1
- package/lib/azure-virtualnetwork/index.js +0 -18
- package/lib/azure-virtualnetwork/lib/index.d.ts +0 -2
- package/lib/azure-virtualnetwork/lib/index.js +0 -19
- package/lib/azure-virtualnetwork/lib/network.d.ts +0 -122
- package/lib/azure-virtualnetwork/lib/network.js +0 -120
- package/lib/azure-virtualnetwork/lib/peering.d.ts +0 -90
- package/lib/azure-virtualnetwork/lib/peering.js +0 -71
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.d.ts +0 -1
- package/lib/azure-virtualnetwork/test/AzureVirtualNetwork.spec.js +0 -48
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.d.ts +0 -5
- package/lib/azure-virtualnetwork/test/ExampleAzureVirtualNetwork.js +0 -88
- package/lib/core-azure/lib/diagsettings.d.ts +0 -89
- package/lib/core-azure/lib/diagsettings.js +0 -83
- package/lib/core-azure/lib/rbac.d.ts +0 -50
- package/lib/core-azure/lib/rbac.js +0 -48
- package/lib/core-azure/lib/resource.d.ts +0 -62
- package/lib/core-azure/lib/resource.js +0 -118
- package/lib/core-azure/test/AzureResource.spec.d.ts +0 -1
- package/lib/core-azure/test/AzureResource.spec.js +0 -19
- package/lib/core-azure/test/ExampleAzureResource.d.ts +0 -5
- package/lib/core-azure/test/ExampleAzureResource.js +0 -67
- package/node_modules/moment/CHANGELOG.md +0 -996
- package/node_modules/moment/LICENSE +0 -22
- package/node_modules/moment/README.md +0 -55
- package/node_modules/moment/dist/locale/af.js +0 -71
- package/node_modules/moment/dist/locale/ar-dz.js +0 -156
- package/node_modules/moment/dist/locale/ar-kw.js +0 -55
- package/node_modules/moment/dist/locale/ar-ly.js +0 -171
- package/node_modules/moment/dist/locale/ar-ma.js +0 -56
- package/node_modules/moment/dist/locale/ar-ps.js +0 -112
- package/node_modules/moment/dist/locale/ar-sa.js +0 -105
- package/node_modules/moment/dist/locale/ar-tn.js +0 -55
- package/node_modules/moment/dist/locale/ar.js +0 -189
- package/node_modules/moment/dist/locale/az.js +0 -102
- package/node_modules/moment/dist/locale/be.js +0 -142
- package/node_modules/moment/dist/locale/bg.js +0 -87
- package/node_modules/moment/dist/locale/bm.js +0 -52
- package/node_modules/moment/dist/locale/bn-bd.js +0 -129
- package/node_modules/moment/dist/locale/bn.js +0 -119
- package/node_modules/moment/dist/locale/bo.js +0 -124
- package/node_modules/moment/dist/locale/br.js +0 -168
- package/node_modules/moment/dist/locale/bs.js +0 -160
- package/node_modules/moment/dist/locale/ca.js +0 -100
- package/node_modules/moment/dist/locale/cs.js +0 -181
- package/node_modules/moment/dist/locale/cv.js +0 -63
- package/node_modules/moment/dist/locale/cy.js +0 -98
- package/node_modules/moment/dist/locale/da.js +0 -53
- package/node_modules/moment/dist/locale/de-at.js +0 -79
- package/node_modules/moment/dist/locale/de-ch.js +0 -78
- package/node_modules/moment/dist/locale/de.js +0 -78
- package/node_modules/moment/dist/locale/dv.js +0 -90
- package/node_modules/moment/dist/locale/el.js +0 -106
- package/node_modules/moment/dist/locale/en-au.js +0 -68
- package/node_modules/moment/dist/locale/en-ca.js +0 -64
- package/node_modules/moment/dist/locale/en-gb.js +0 -68
- package/node_modules/moment/dist/locale/en-ie.js +0 -68
- package/node_modules/moment/dist/locale/en-il.js +0 -64
- package/node_modules/moment/dist/locale/en-in.js +0 -68
- package/node_modules/moment/dist/locale/en-nz.js +0 -68
- package/node_modules/moment/dist/locale/en-sg.js +0 -68
- package/node_modules/moment/dist/locale/eo.js +0 -68
- package/node_modules/moment/dist/locale/es-do.js +0 -108
- package/node_modules/moment/dist/locale/es-mx.js +0 -110
- package/node_modules/moment/dist/locale/es-us.js +0 -110
- package/node_modules/moment/dist/locale/es.js +0 -110
- package/node_modules/moment/dist/locale/et.js +0 -78
- package/node_modules/moment/dist/locale/eu.js +0 -65
- package/node_modules/moment/dist/locale/fa.js +0 -113
- package/node_modules/moment/dist/locale/fi.js +0 -124
- package/node_modules/moment/dist/locale/fil.js +0 -58
- package/node_modules/moment/dist/locale/fo.js +0 -57
- package/node_modules/moment/dist/locale/fr-ca.js +0 -70
- package/node_modules/moment/dist/locale/fr-ch.js +0 -74
- package/node_modules/moment/dist/locale/fr.js +0 -108
- package/node_modules/moment/dist/locale/fy.js +0 -75
- package/node_modules/moment/dist/locale/ga.js +0 -95
- package/node_modules/moment/dist/locale/gd.js +0 -95
- package/node_modules/moment/dist/locale/gl.js +0 -75
- package/node_modules/moment/dist/locale/gom-deva.js +0 -126
- package/node_modules/moment/dist/locale/gom-latn.js +0 -124
- package/node_modules/moment/dist/locale/gu.js +0 -122
- package/node_modules/moment/dist/locale/he.js +0 -94
- package/node_modules/moment/dist/locale/hi.js +0 -168
- package/node_modules/moment/dist/locale/hr.js +0 -156
- package/node_modules/moment/dist/locale/hu.js +0 -118
- package/node_modules/moment/dist/locale/hy-am.js +0 -94
- package/node_modules/moment/dist/locale/id.js +0 -76
- package/node_modules/moment/dist/locale/is.js +0 -140
- package/node_modules/moment/dist/locale/it-ch.js +0 -64
- package/node_modules/moment/dist/locale/it.js +0 -106
- package/node_modules/moment/dist/locale/ja.js +0 -148
- package/node_modules/moment/dist/locale/jv.js +0 -76
- package/node_modules/moment/dist/locale/ka.js +0 -92
- package/node_modules/moment/dist/locale/kk.js +0 -82
- package/node_modules/moment/dist/locale/km.js +0 -103
- package/node_modules/moment/dist/locale/kn.js +0 -124
- package/node_modules/moment/dist/locale/ko.js +0 -75
- package/node_modules/moment/dist/locale/ku-kmr.js +0 -121
- package/node_modules/moment/dist/locale/ku.js +0 -118
- package/node_modules/moment/dist/locale/ky.js +0 -84
- package/node_modules/moment/dist/locale/lb.js +0 -137
- package/node_modules/moment/dist/locale/lo.js +0 -66
- package/node_modules/moment/dist/locale/lt.js +0 -125
- package/node_modules/moment/dist/locale/lv.js +0 -94
- package/node_modules/moment/dist/locale/me.js +0 -117
- package/node_modules/moment/dist/locale/mi.js +0 -60
- package/node_modules/moment/dist/locale/mk.js +0 -85
- package/node_modules/moment/dist/locale/ml.js +0 -82
- package/node_modules/moment/dist/locale/mn.js +0 -100
- package/node_modules/moment/dist/locale/mr.js +0 -203
- package/node_modules/moment/dist/locale/ms-my.js +0 -76
- package/node_modules/moment/dist/locale/ms.js +0 -75
- package/node_modules/moment/dist/locale/mt.js +0 -56
- package/node_modules/moment/dist/locale/my.js +0 -91
- package/node_modules/moment/dist/locale/nb.js +0 -60
- package/node_modules/moment/dist/locale/ne.js +0 -121
- package/node_modules/moment/dist/locale/nl-be.js +0 -102
- package/node_modules/moment/dist/locale/nl.js +0 -104
- package/node_modules/moment/dist/locale/nn.js +0 -59
- package/node_modules/moment/dist/locale/oc-lnc.js +0 -85
- package/node_modules/moment/dist/locale/pa-in.js +0 -122
- package/node_modules/moment/dist/locale/pl.js +0 -140
- package/node_modules/moment/dist/locale/pt-br.js +0 -58
- package/node_modules/moment/dist/locale/pt.js +0 -63
- package/node_modules/moment/dist/locale/ro.js +0 -76
- package/node_modules/moment/dist/locale/ru.js +0 -213
- package/node_modules/moment/dist/locale/sd.js +0 -81
- package/node_modules/moment/dist/locale/se.js +0 -57
- package/node_modules/moment/dist/locale/si.js +0 -69
- package/node_modules/moment/dist/locale/sk.js +0 -145
- package/node_modules/moment/dist/locale/sl.js +0 -171
- package/node_modules/moment/dist/locale/sq.js +0 -65
- package/node_modules/moment/dist/locale/sr-cyrl.js +0 -127
- package/node_modules/moment/dist/locale/sr.js +0 -129
- package/node_modules/moment/dist/locale/ss.js +0 -84
- package/node_modules/moment/dist/locale/sv.js +0 -68
- package/node_modules/moment/dist/locale/sw.js +0 -55
- package/node_modules/moment/dist/locale/ta.js +0 -131
- package/node_modules/moment/dist/locale/te.js +0 -88
- package/node_modules/moment/dist/locale/tet.js +0 -68
- package/node_modules/moment/dist/locale/tg.js +0 -117
- package/node_modules/moment/dist/locale/th.js +0 -65
- package/node_modules/moment/dist/locale/tk.js +0 -91
- package/node_modules/moment/dist/locale/tl-ph.js +0 -57
- package/node_modules/moment/dist/locale/tlh.js +0 -124
- package/node_modules/moment/dist/locale/tr.js +0 -106
- package/node_modules/moment/dist/locale/tzl.js +0 -89
- package/node_modules/moment/dist/locale/tzm-latn.js +0 -54
- package/node_modules/moment/dist/locale/tzm.js +0 -54
- package/node_modules/moment/dist/locale/ug-cn.js +0 -111
- package/node_modules/moment/dist/locale/uk.js +0 -167
- package/node_modules/moment/dist/locale/ur.js +0 -82
- package/node_modules/moment/dist/locale/uz-latn.js +0 -54
- package/node_modules/moment/dist/locale/uz.js +0 -51
- package/node_modules/moment/dist/locale/vi.js +0 -80
- package/node_modules/moment/dist/locale/x-pseudo.js +0 -73
- package/node_modules/moment/dist/locale/yo.js +0 -53
- package/node_modules/moment/dist/locale/zh-cn.js +0 -120
- package/node_modules/moment/dist/locale/zh-hk.js +0 -101
- package/node_modules/moment/dist/locale/zh-mo.js +0 -100
- package/node_modules/moment/dist/locale/zh-tw.js +0 -99
- package/node_modules/moment/dist/moment.js +0 -5680
- package/node_modules/moment/ender.js +0 -1
- package/node_modules/moment/locale/af.js +0 -82
- package/node_modules/moment/locale/ar-dz.js +0 -167
- package/node_modules/moment/locale/ar-kw.js +0 -66
- package/node_modules/moment/locale/ar-ly.js +0 -182
- package/node_modules/moment/locale/ar-ma.js +0 -67
- package/node_modules/moment/locale/ar-ps.js +0 -123
- package/node_modules/moment/locale/ar-sa.js +0 -116
- package/node_modules/moment/locale/ar-tn.js +0 -66
- package/node_modules/moment/locale/ar.js +0 -200
- package/node_modules/moment/locale/az.js +0 -113
- package/node_modules/moment/locale/be.js +0 -153
- package/node_modules/moment/locale/bg.js +0 -98
- package/node_modules/moment/locale/bm.js +0 -62
- package/node_modules/moment/locale/bn-bd.js +0 -140
- package/node_modules/moment/locale/bn.js +0 -130
- package/node_modules/moment/locale/bo.js +0 -135
- package/node_modules/moment/locale/br.js +0 -179
- package/node_modules/moment/locale/bs.js +0 -171
- package/node_modules/moment/locale/ca.js +0 -111
- package/node_modules/moment/locale/cs.js +0 -192
- package/node_modules/moment/locale/cv.js +0 -74
- package/node_modules/moment/locale/cy.js +0 -109
- package/node_modules/moment/locale/da.js +0 -64
- package/node_modules/moment/locale/de-at.js +0 -90
- package/node_modules/moment/locale/de-ch.js +0 -87
- package/node_modules/moment/locale/de.js +0 -89
- package/node_modules/moment/locale/dv.js +0 -101
- package/node_modules/moment/locale/el.js +0 -117
- package/node_modules/moment/locale/en-au.js +0 -79
- package/node_modules/moment/locale/en-ca.js +0 -75
- package/node_modules/moment/locale/en-gb.js +0 -79
- package/node_modules/moment/locale/en-ie.js +0 -79
- package/node_modules/moment/locale/en-il.js +0 -75
- package/node_modules/moment/locale/en-in.js +0 -79
- package/node_modules/moment/locale/en-nz.js +0 -79
- package/node_modules/moment/locale/en-sg.js +0 -79
- package/node_modules/moment/locale/eo.js +0 -79
- package/node_modules/moment/locale/es-do.js +0 -119
- package/node_modules/moment/locale/es-mx.js +0 -121
- package/node_modules/moment/locale/es-us.js +0 -121
- package/node_modules/moment/locale/es.js +0 -121
- package/node_modules/moment/locale/et.js +0 -89
- package/node_modules/moment/locale/eu.js +0 -76
- package/node_modules/moment/locale/fa.js +0 -124
- package/node_modules/moment/locale/fi.js +0 -135
- package/node_modules/moment/locale/fil.js +0 -69
- package/node_modules/moment/locale/fo.js +0 -68
- package/node_modules/moment/locale/fr-ca.js +0 -81
- package/node_modules/moment/locale/fr-ch.js +0 -85
- package/node_modules/moment/locale/fr.js +0 -119
- package/node_modules/moment/locale/fy.js +0 -86
- package/node_modules/moment/locale/ga.js +0 -106
- package/node_modules/moment/locale/gd.js +0 -106
- package/node_modules/moment/locale/gl.js +0 -86
- package/node_modules/moment/locale/gom-deva.js +0 -137
- package/node_modules/moment/locale/gom-latn.js +0 -135
- package/node_modules/moment/locale/gu.js +0 -133
- package/node_modules/moment/locale/he.js +0 -105
- package/node_modules/moment/locale/hi.js +0 -179
- package/node_modules/moment/locale/hr.js +0 -167
- package/node_modules/moment/locale/hu.js +0 -129
- package/node_modules/moment/locale/hy-am.js +0 -105
- package/node_modules/moment/locale/id.js +0 -87
- package/node_modules/moment/locale/is.js +0 -151
- package/node_modules/moment/locale/it-ch.js +0 -75
- package/node_modules/moment/locale/it.js +0 -117
- package/node_modules/moment/locale/ja.js +0 -159
- package/node_modules/moment/locale/jv.js +0 -87
- package/node_modules/moment/locale/ka.js +0 -103
- package/node_modules/moment/locale/kk.js +0 -93
- package/node_modules/moment/locale/km.js +0 -114
- package/node_modules/moment/locale/kn.js +0 -135
- package/node_modules/moment/locale/ko.js +0 -86
- package/node_modules/moment/locale/ku-kmr.js +0 -125
- package/node_modules/moment/locale/ku.js +0 -129
- package/node_modules/moment/locale/ky.js +0 -95
- package/node_modules/moment/locale/lb.js +0 -148
- package/node_modules/moment/locale/lo.js +0 -77
- package/node_modules/moment/locale/lt.js +0 -136
- package/node_modules/moment/locale/lv.js +0 -105
- package/node_modules/moment/locale/me.js +0 -128
- package/node_modules/moment/locale/mi.js +0 -71
- package/node_modules/moment/locale/mk.js +0 -97
- package/node_modules/moment/locale/ml.js +0 -93
- package/node_modules/moment/locale/mn.js +0 -111
- package/node_modules/moment/locale/mr.js +0 -214
- package/node_modules/moment/locale/ms-my.js +0 -87
- package/node_modules/moment/locale/ms.js +0 -86
- package/node_modules/moment/locale/mt.js +0 -67
- package/node_modules/moment/locale/my.js +0 -102
- package/node_modules/moment/locale/nb.js +0 -71
- package/node_modules/moment/locale/ne.js +0 -132
- package/node_modules/moment/locale/nl-be.js +0 -113
- package/node_modules/moment/locale/nl.js +0 -115
- package/node_modules/moment/locale/nn.js +0 -70
- package/node_modules/moment/locale/oc-lnc.js +0 -96
- package/node_modules/moment/locale/pa-in.js +0 -133
- package/node_modules/moment/locale/pl.js +0 -151
- package/node_modules/moment/locale/pt-br.js +0 -69
- package/node_modules/moment/locale/pt.js +0 -74
- package/node_modules/moment/locale/ro.js +0 -87
- package/node_modules/moment/locale/ru.js +0 -224
- package/node_modules/moment/locale/sd.js +0 -92
- package/node_modules/moment/locale/se.js +0 -68
- package/node_modules/moment/locale/si.js +0 -80
- package/node_modules/moment/locale/sk.js +0 -156
- package/node_modules/moment/locale/sl.js +0 -182
- package/node_modules/moment/locale/sq.js +0 -76
- package/node_modules/moment/locale/sr-cyrl.js +0 -138
- package/node_modules/moment/locale/sr.js +0 -140
- package/node_modules/moment/locale/ss.js +0 -95
- package/node_modules/moment/locale/sv.js +0 -79
- package/node_modules/moment/locale/sw.js +0 -66
- package/node_modules/moment/locale/ta.js +0 -142
- package/node_modules/moment/locale/te.js +0 -99
- package/node_modules/moment/locale/tet.js +0 -79
- package/node_modules/moment/locale/tg.js +0 -128
- package/node_modules/moment/locale/th.js +0 -76
- package/node_modules/moment/locale/tk.js +0 -102
- package/node_modules/moment/locale/tl-ph.js +0 -68
- package/node_modules/moment/locale/tlh.js +0 -135
- package/node_modules/moment/locale/tr.js +0 -117
- package/node_modules/moment/locale/tzl.js +0 -100
- package/node_modules/moment/locale/tzm-latn.js +0 -65
- package/node_modules/moment/locale/tzm.js +0 -65
- package/node_modules/moment/locale/ug-cn.js +0 -122
- package/node_modules/moment/locale/uk.js +0 -178
- package/node_modules/moment/locale/ur.js +0 -93
- package/node_modules/moment/locale/uz-latn.js +0 -65
- package/node_modules/moment/locale/uz.js +0 -62
- package/node_modules/moment/locale/vi.js +0 -91
- package/node_modules/moment/locale/x-pseudo.js +0 -84
- package/node_modules/moment/locale/yo.js +0 -64
- package/node_modules/moment/locale/zh-cn.js +0 -131
- package/node_modules/moment/locale/zh-hk.js +0 -112
- package/node_modules/moment/locale/zh-mo.js +0 -111
- package/node_modules/moment/locale/zh-tw.js +0 -110
- package/node_modules/moment/min/locales.js +0 -12800
- package/node_modules/moment/min/locales.min.js +0 -2
- package/node_modules/moment/min/locales.min.js.map +0 -1
- package/node_modules/moment/min/moment-with-locales.js +0 -18472
- package/node_modules/moment/min/moment-with-locales.min.js +0 -2
- package/node_modules/moment/min/moment-with-locales.min.js.map +0 -1
- package/node_modules/moment/min/moment.min.js +0 -2
- package/node_modules/moment/min/moment.min.js.map +0 -1
- package/node_modules/moment/moment.d.ts +0 -796
- package/node_modules/moment/moment.js +0 -5688
- package/node_modules/moment/package.js +0 -11
- package/node_modules/moment/package.json +0 -116
- package/node_modules/moment/src/lib/create/check-overflow.js +0 -57
- package/node_modules/moment/src/lib/create/date-from-array.js +0 -35
- package/node_modules/moment/src/lib/create/from-anything.js +0 -117
- package/node_modules/moment/src/lib/create/from-array.js +0 -187
- package/node_modules/moment/src/lib/create/from-object.js +0 -20
- package/node_modules/moment/src/lib/create/from-string-and-array.js +0 -67
- package/node_modules/moment/src/lib/create/from-string-and-format.js +0 -135
- package/node_modules/moment/src/lib/create/from-string.js +0 -258
- package/node_modules/moment/src/lib/create/local.js +0 -5
- package/node_modules/moment/src/lib/create/parsing-flags.js +0 -28
- package/node_modules/moment/src/lib/create/utc.js +0 -5
- package/node_modules/moment/src/lib/create/valid.js +0 -51
- package/node_modules/moment/src/lib/duration/abs.js +0 -18
- package/node_modules/moment/src/lib/duration/add-subtract.js +0 -21
- package/node_modules/moment/src/lib/duration/as.js +0 -76
- package/node_modules/moment/src/lib/duration/bubble.js +0 -68
- package/node_modules/moment/src/lib/duration/clone.js +0 -5
- package/node_modules/moment/src/lib/duration/constructor.js +0 -42
- package/node_modules/moment/src/lib/duration/create.js +0 -133
- package/node_modules/moment/src/lib/duration/duration.js +0 -16
- package/node_modules/moment/src/lib/duration/get.js +0 -27
- package/node_modules/moment/src/lib/duration/humanize.js +0 -114
- package/node_modules/moment/src/lib/duration/iso-string.js +0 -68
- package/node_modules/moment/src/lib/duration/prototype.js +0 -78
- package/node_modules/moment/src/lib/duration/valid.js +0 -55
- package/node_modules/moment/src/lib/format/format.js +0 -104
- package/node_modules/moment/src/lib/locale/base-config.js +0 -41
- package/node_modules/moment/src/lib/locale/calendar.js +0 -15
- package/node_modules/moment/src/lib/locale/constructor.js +0 -5
- package/node_modules/moment/src/lib/locale/en.js +0 -39
- package/node_modules/moment/src/lib/locale/formats.js +0 -36
- package/node_modules/moment/src/lib/locale/invalid.js +0 -5
- package/node_modules/moment/src/lib/locale/lists.js +0 -93
- package/node_modules/moment/src/lib/locale/locale.js +0 -45
- package/node_modules/moment/src/lib/locale/locales.js +0 -249
- package/node_modules/moment/src/lib/locale/ordinal.js +0 -8
- package/node_modules/moment/src/lib/locale/pre-post-format.js +0 -3
- package/node_modules/moment/src/lib/locale/prototype.js +0 -88
- package/node_modules/moment/src/lib/locale/relative.js +0 -32
- package/node_modules/moment/src/lib/locale/set.js +0 -56
- package/node_modules/moment/src/lib/moment/add-subtract.js +0 -61
- package/node_modules/moment/src/lib/moment/calendar.js +0 -53
- package/node_modules/moment/src/lib/moment/clone.js +0 -5
- package/node_modules/moment/src/lib/moment/compare.js +0 -72
- package/node_modules/moment/src/lib/moment/constructor.js +0 -80
- package/node_modules/moment/src/lib/moment/creation-data.js +0 -9
- package/node_modules/moment/src/lib/moment/diff.js +0 -79
- package/node_modules/moment/src/lib/moment/format.js +0 -78
- package/node_modules/moment/src/lib/moment/from.js +0 -20
- package/node_modules/moment/src/lib/moment/get-set.js +0 -117
- package/node_modules/moment/src/lib/moment/locale.js +0 -34
- package/node_modules/moment/src/lib/moment/min-max.js +0 -62
- package/node_modules/moment/src/lib/moment/moment.js +0 -28
- package/node_modules/moment/src/lib/moment/now.js +0 -3
- package/node_modules/moment/src/lib/moment/prototype.js +0 -197
- package/node_modules/moment/src/lib/moment/start-end-of.js +0 -164
- package/node_modules/moment/src/lib/moment/to-type.js +0 -42
- package/node_modules/moment/src/lib/moment/to.js +0 -20
- package/node_modules/moment/src/lib/moment/valid.js +0 -15
- package/node_modules/moment/src/lib/parse/regex.js +0 -84
- package/node_modules/moment/src/lib/parse/token.js +0 -36
- package/node_modules/moment/src/lib/units/aliases.js +0 -75
- package/node_modules/moment/src/lib/units/constants.js +0 -9
- package/node_modules/moment/src/lib/units/day-of-month.js +0 -35
- package/node_modules/moment/src/lib/units/day-of-week.js +0 -432
- package/node_modules/moment/src/lib/units/day-of-year.js +0 -28
- package/node_modules/moment/src/lib/units/era.js +0 -293
- package/node_modules/moment/src/lib/units/hour.js +0 -152
- package/node_modules/moment/src/lib/units/millisecond.js +0 -66
- package/node_modules/moment/src/lib/units/minute.js +0 -24
- package/node_modules/moment/src/lib/units/month.js +0 -340
- package/node_modules/moment/src/lib/units/offset.js +0 -249
- package/node_modules/moment/src/lib/units/priorities.js +0 -34
- package/node_modules/moment/src/lib/units/quarter.js +0 -24
- package/node_modules/moment/src/lib/units/second.js +0 -24
- package/node_modules/moment/src/lib/units/timestamp.js +0 -20
- package/node_modules/moment/src/lib/units/timezone.js +0 -16
- package/node_modules/moment/src/lib/units/units.js +0 -20
- package/node_modules/moment/src/lib/units/week-calendar-utils.js +0 -66
- package/node_modules/moment/src/lib/units/week-year.js +0 -128
- package/node_modules/moment/src/lib/units/week.js +0 -62
- package/node_modules/moment/src/lib/units/year.js +0 -75
- package/node_modules/moment/src/lib/utils/abs-ceil.js +0 -7
- package/node_modules/moment/src/lib/utils/abs-floor.js +0 -8
- package/node_modules/moment/src/lib/utils/abs-round.js +0 -7
- package/node_modules/moment/src/lib/utils/compare-arrays.js +0 -18
- package/node_modules/moment/src/lib/utils/defaults.js +0 -10
- package/node_modules/moment/src/lib/utils/deprecate.js +0 -69
- package/node_modules/moment/src/lib/utils/extend.js +0 -19
- package/node_modules/moment/src/lib/utils/has-own-prop.js +0 -3
- package/node_modules/moment/src/lib/utils/hooks.js +0 -13
- package/node_modules/moment/src/lib/utils/index-of.js +0 -18
- package/node_modules/moment/src/lib/utils/is-array.js +0 -6
- package/node_modules/moment/src/lib/utils/is-calendar-spec.js +0 -25
- package/node_modules/moment/src/lib/utils/is-date.js +0 -6
- package/node_modules/moment/src/lib/utils/is-function.js +0 -6
- package/node_modules/moment/src/lib/utils/is-leap-year.js +0 -3
- package/node_modules/moment/src/lib/utils/is-moment-input.js +0 -75
- package/node_modules/moment/src/lib/utils/is-number.js +0 -6
- package/node_modules/moment/src/lib/utils/is-object-empty.js +0 -15
- package/node_modules/moment/src/lib/utils/is-object.js +0 -8
- package/node_modules/moment/src/lib/utils/is-string.js +0 -3
- package/node_modules/moment/src/lib/utils/is-undefined.js +0 -3
- package/node_modules/moment/src/lib/utils/keys.js +0 -20
- package/node_modules/moment/src/lib/utils/map.js +0 -9
- package/node_modules/moment/src/lib/utils/mod.js +0 -3
- package/node_modules/moment/src/lib/utils/some.js +0 -20
- package/node_modules/moment/src/lib/utils/to-int.js +0 -12
- package/node_modules/moment/src/lib/utils/zero-fill.js +0 -10
- package/node_modules/moment/src/locale/af.js +0 -71
- package/node_modules/moment/src/locale/ar-dz.js +0 -156
- package/node_modules/moment/src/locale/ar-kw.js +0 -55
- package/node_modules/moment/src/locale/ar-ly.js +0 -171
- package/node_modules/moment/src/locale/ar-ma.js +0 -56
- package/node_modules/moment/src/locale/ar-ps.js +0 -112
- package/node_modules/moment/src/locale/ar-sa.js +0 -105
- package/node_modules/moment/src/locale/ar-tn.js +0 -55
- package/node_modules/moment/src/locale/ar.js +0 -189
- package/node_modules/moment/src/locale/az.js +0 -102
- package/node_modules/moment/src/locale/be.js +0 -142
- package/node_modules/moment/src/locale/bg.js +0 -87
- package/node_modules/moment/src/locale/bm.js +0 -52
- package/node_modules/moment/src/locale/bn-bd.js +0 -129
- package/node_modules/moment/src/locale/bn.js +0 -119
- package/node_modules/moment/src/locale/bo.js +0 -124
- package/node_modules/moment/src/locale/br.js +0 -168
- package/node_modules/moment/src/locale/bs.js +0 -160
- package/node_modules/moment/src/locale/ca.js +0 -100
- package/node_modules/moment/src/locale/cs.js +0 -181
- package/node_modules/moment/src/locale/cv.js +0 -63
- package/node_modules/moment/src/locale/cy.js +0 -98
- package/node_modules/moment/src/locale/da.js +0 -53
- package/node_modules/moment/src/locale/de-at.js +0 -79
- package/node_modules/moment/src/locale/de-ch.js +0 -78
- package/node_modules/moment/src/locale/de.js +0 -78
- package/node_modules/moment/src/locale/dv.js +0 -90
- package/node_modules/moment/src/locale/el.js +0 -106
- package/node_modules/moment/src/locale/en-au.js +0 -68
- package/node_modules/moment/src/locale/en-ca.js +0 -64
- package/node_modules/moment/src/locale/en-gb.js +0 -68
- package/node_modules/moment/src/locale/en-ie.js +0 -68
- package/node_modules/moment/src/locale/en-il.js +0 -64
- package/node_modules/moment/src/locale/en-in.js +0 -68
- package/node_modules/moment/src/locale/en-nz.js +0 -68
- package/node_modules/moment/src/locale/en-sg.js +0 -68
- package/node_modules/moment/src/locale/eo.js +0 -68
- package/node_modules/moment/src/locale/es-do.js +0 -108
- package/node_modules/moment/src/locale/es-mx.js +0 -110
- package/node_modules/moment/src/locale/es-us.js +0 -110
- package/node_modules/moment/src/locale/es.js +0 -110
- package/node_modules/moment/src/locale/et.js +0 -78
- package/node_modules/moment/src/locale/eu.js +0 -65
- package/node_modules/moment/src/locale/fa.js +0 -113
- package/node_modules/moment/src/locale/fi.js +0 -124
- package/node_modules/moment/src/locale/fil.js +0 -58
- package/node_modules/moment/src/locale/fo.js +0 -57
- package/node_modules/moment/src/locale/fr-ca.js +0 -70
- package/node_modules/moment/src/locale/fr-ch.js +0 -74
- package/node_modules/moment/src/locale/fr.js +0 -108
- package/node_modules/moment/src/locale/fy.js +0 -75
- package/node_modules/moment/src/locale/ga.js +0 -95
- package/node_modules/moment/src/locale/gd.js +0 -95
- package/node_modules/moment/src/locale/gl.js +0 -75
- package/node_modules/moment/src/locale/gom-deva.js +0 -126
- package/node_modules/moment/src/locale/gom-latn.js +0 -124
- package/node_modules/moment/src/locale/gu.js +0 -122
- package/node_modules/moment/src/locale/he.js +0 -94
- package/node_modules/moment/src/locale/hi.js +0 -168
- package/node_modules/moment/src/locale/hr.js +0 -156
- package/node_modules/moment/src/locale/hu.js +0 -118
- package/node_modules/moment/src/locale/hy-am.js +0 -94
- package/node_modules/moment/src/locale/id.js +0 -76
- package/node_modules/moment/src/locale/is.js +0 -140
- package/node_modules/moment/src/locale/it-ch.js +0 -64
- package/node_modules/moment/src/locale/it.js +0 -106
- package/node_modules/moment/src/locale/ja.js +0 -148
- package/node_modules/moment/src/locale/jv.js +0 -76
- package/node_modules/moment/src/locale/ka.js +0 -92
- package/node_modules/moment/src/locale/kk.js +0 -82
- package/node_modules/moment/src/locale/km.js +0 -103
- package/node_modules/moment/src/locale/kn.js +0 -124
- package/node_modules/moment/src/locale/ko.js +0 -75
- package/node_modules/moment/src/locale/ku-kmr.js +0 -121
- package/node_modules/moment/src/locale/ku.js +0 -118
- package/node_modules/moment/src/locale/ky.js +0 -84
- package/node_modules/moment/src/locale/lb.js +0 -137
- package/node_modules/moment/src/locale/lo.js +0 -66
- package/node_modules/moment/src/locale/lt.js +0 -125
- package/node_modules/moment/src/locale/lv.js +0 -94
- package/node_modules/moment/src/locale/me.js +0 -117
- package/node_modules/moment/src/locale/mi.js +0 -60
- package/node_modules/moment/src/locale/mk.js +0 -85
- package/node_modules/moment/src/locale/ml.js +0 -82
- package/node_modules/moment/src/locale/mn.js +0 -100
- package/node_modules/moment/src/locale/mr.js +0 -203
- package/node_modules/moment/src/locale/ms-my.js +0 -76
- package/node_modules/moment/src/locale/ms.js +0 -75
- package/node_modules/moment/src/locale/mt.js +0 -56
- package/node_modules/moment/src/locale/my.js +0 -91
- package/node_modules/moment/src/locale/nb.js +0 -60
- package/node_modules/moment/src/locale/ne.js +0 -121
- package/node_modules/moment/src/locale/nl-be.js +0 -102
- package/node_modules/moment/src/locale/nl.js +0 -104
- package/node_modules/moment/src/locale/nn.js +0 -59
- package/node_modules/moment/src/locale/oc-lnc.js +0 -85
- package/node_modules/moment/src/locale/pa-in.js +0 -122
- package/node_modules/moment/src/locale/pl.js +0 -140
- package/node_modules/moment/src/locale/pt-br.js +0 -58
- package/node_modules/moment/src/locale/pt.js +0 -63
- package/node_modules/moment/src/locale/ro.js +0 -76
- package/node_modules/moment/src/locale/ru.js +0 -213
- package/node_modules/moment/src/locale/sd.js +0 -81
- package/node_modules/moment/src/locale/se.js +0 -57
- package/node_modules/moment/src/locale/si.js +0 -69
- package/node_modules/moment/src/locale/sk.js +0 -145
- package/node_modules/moment/src/locale/sl.js +0 -171
- package/node_modules/moment/src/locale/sq.js +0 -65
- package/node_modules/moment/src/locale/sr-cyrl.js +0 -127
- package/node_modules/moment/src/locale/sr.js +0 -129
- package/node_modules/moment/src/locale/ss.js +0 -84
- package/node_modules/moment/src/locale/sv.js +0 -68
- package/node_modules/moment/src/locale/sw.js +0 -55
- package/node_modules/moment/src/locale/ta.js +0 -131
- package/node_modules/moment/src/locale/te.js +0 -88
- package/node_modules/moment/src/locale/tet.js +0 -68
- package/node_modules/moment/src/locale/tg.js +0 -117
- package/node_modules/moment/src/locale/th.js +0 -65
- package/node_modules/moment/src/locale/tk.js +0 -91
- package/node_modules/moment/src/locale/tl-ph.js +0 -57
- package/node_modules/moment/src/locale/tlh.js +0 -124
- package/node_modules/moment/src/locale/tr.js +0 -106
- package/node_modules/moment/src/locale/tzl.js +0 -89
- package/node_modules/moment/src/locale/tzm-latn.js +0 -54
- package/node_modules/moment/src/locale/tzm.js +0 -54
- package/node_modules/moment/src/locale/ug-cn.js +0 -111
- package/node_modules/moment/src/locale/uk.js +0 -167
- package/node_modules/moment/src/locale/ur.js +0 -82
- package/node_modules/moment/src/locale/uz-latn.js +0 -54
- package/node_modules/moment/src/locale/uz.js +0 -51
- package/node_modules/moment/src/locale/vi.js +0 -80
- package/node_modules/moment/src/locale/x-pseudo.js +0 -73
- package/node_modules/moment/src/locale/yo.js +0 -53
- package/node_modules/moment/src/locale/zh-cn.js +0 -120
- package/node_modules/moment/src/locale/zh-hk.js +0 -101
- package/node_modules/moment/src/locale/zh-mo.js +0 -100
- package/node_modules/moment/src/locale/zh-tw.js +0 -99
- package/node_modules/moment/src/moment.js +0 -93
- package/node_modules/moment/ts3.1-typings/moment.d.ts +0 -785
- package/node_modules/nanoid/LICENSE +0 -20
- package/node_modules/nanoid/README.md +0 -38
- package/node_modules/nanoid/async/index.browser.js +0 -33
- package/node_modules/nanoid/async/index.d.ts +0 -56
- package/node_modules/nanoid/async/index.js +0 -34
- package/node_modules/nanoid/async/index.native.js +0 -25
- package/node_modules/nanoid/bin/nanoid.js +0 -46
- package/node_modules/nanoid/index.browser.js +0 -33
- package/node_modules/nanoid/index.d.ts +0 -91
- package/node_modules/nanoid/index.js +0 -45
- package/node_modules/nanoid/nanoid.js +0 -1
- package/node_modules/nanoid/non-secure/index.d.ts +0 -33
- package/node_modules/nanoid/non-secure/index.js +0 -20
- package/node_modules/nanoid/package.json +0 -46
- package/node_modules/nanoid/url-alphabet/index.js +0 -2
- package/node_modules/ts-md5/LICENSE +0 -21
- package/node_modules/ts-md5/README.md +0 -101
- package/node_modules/ts-md5/dist/cjs/index.d.ts +0 -3
- package/node_modules/ts-md5/dist/cjs/index.js +0 -10
- package/node_modules/ts-md5/dist/cjs/index.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/md5.d.ts +0 -70
- package/node_modules/ts-md5/dist/cjs/md5.js +0 -429
- package/node_modules/ts-md5/dist/cjs/md5.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.d.ts +0 -25
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js +0 -96
- package/node_modules/ts-md5/dist/cjs/md5_file_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.d.ts +0 -22
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js +0 -69
- package/node_modules/ts-md5/dist/cjs/parallel_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/index.d.ts +0 -3
- package/node_modules/ts-md5/dist/esm/index.js +0 -4
- package/node_modules/ts-md5/dist/esm/index.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/md5.d.ts +0 -70
- package/node_modules/ts-md5/dist/esm/md5.js +0 -421
- package/node_modules/ts-md5/dist/esm/md5.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.d.ts +0 -25
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js +0 -89
- package/node_modules/ts-md5/dist/esm/md5_file_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/esm/parallel_hasher.d.ts +0 -22
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js +0 -64
- package/node_modules/ts-md5/dist/esm/parallel_hasher.js.map +0 -1
- package/node_modules/ts-md5/dist/md5.js +0 -429
- package/node_modules/ts-md5/dist/md5_worker.js +0 -523
- package/node_modules/ts-md5/package.json +0 -82
- package/node_modules/ts-md5/src/index.ts +0 -4
- package/node_modules/ts-md5/src/md5.ts +0 -473
- package/node_modules/ts-md5/src/md5_file_hasher.ts +0 -110
- package/node_modules/ts-md5/src/parallel_hasher.ts +0 -90
- package/node_modules/ts-md5/src/worker.js +0 -20
- package/tfsec.json +0 -4
|
@@ -1,785 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @param strict Strict parsing disables the deprecated fallback to the native Date constructor when
|
|
3
|
-
* parsing a string.
|
|
4
|
-
*/
|
|
5
|
-
declare function moment(inp?: moment.MomentInput, strict?: boolean): moment.Moment;
|
|
6
|
-
/**
|
|
7
|
-
* @param strict Strict parsing requires that the format and input match exactly, including delimiters.
|
|
8
|
-
* Strict parsing is frequently the best parsing option. For more information about choosing strict vs
|
|
9
|
-
* forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
|
|
10
|
-
*/
|
|
11
|
-
declare function moment(inp?: moment.MomentInput, format?: moment.MomentFormatSpecification, strict?: boolean): moment.Moment;
|
|
12
|
-
/**
|
|
13
|
-
* @param strict Strict parsing requires that the format and input match exactly, including delimiters.
|
|
14
|
-
* Strict parsing is frequently the best parsing option. For more information about choosing strict vs
|
|
15
|
-
* forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
|
|
16
|
-
*/
|
|
17
|
-
declare function moment(inp?: moment.MomentInput, format?: moment.MomentFormatSpecification, language?: string, strict?: boolean): moment.Moment;
|
|
18
|
-
|
|
19
|
-
declare namespace moment {
|
|
20
|
-
type RelativeTimeKey = 's' | 'ss' | 'm' | 'mm' | 'h' | 'hh' | 'd' | 'dd' | 'w' | 'ww' | 'M' | 'MM' | 'y' | 'yy';
|
|
21
|
-
type CalendarKey = 'sameDay' | 'nextDay' | 'lastDay' | 'nextWeek' | 'lastWeek' | 'sameElse' | string;
|
|
22
|
-
type LongDateFormatKey = 'LTS' | 'LT' | 'L' | 'LL' | 'LLL' | 'LLLL' | 'lts' | 'lt' | 'l' | 'll' | 'lll' | 'llll';
|
|
23
|
-
|
|
24
|
-
interface Locale {
|
|
25
|
-
calendar(key?: CalendarKey, m?: Moment, now?: Moment): string;
|
|
26
|
-
|
|
27
|
-
longDateFormat(key: LongDateFormatKey): string;
|
|
28
|
-
invalidDate(): string;
|
|
29
|
-
ordinal(n: number): string;
|
|
30
|
-
|
|
31
|
-
preparse(inp: string): string;
|
|
32
|
-
postformat(inp: string): string;
|
|
33
|
-
relativeTime(n: number, withoutSuffix: boolean,
|
|
34
|
-
key: RelativeTimeKey, isFuture: boolean): string;
|
|
35
|
-
pastFuture(diff: number, absRelTime: string): string;
|
|
36
|
-
set(config: Object): void;
|
|
37
|
-
|
|
38
|
-
months(): string[];
|
|
39
|
-
months(m: Moment, format?: string): string;
|
|
40
|
-
monthsShort(): string[];
|
|
41
|
-
monthsShort(m: Moment, format?: string): string;
|
|
42
|
-
monthsParse(monthName: string, format: string, strict: boolean): number;
|
|
43
|
-
monthsRegex(strict: boolean): RegExp;
|
|
44
|
-
monthsShortRegex(strict: boolean): RegExp;
|
|
45
|
-
|
|
46
|
-
week(m: Moment): number;
|
|
47
|
-
firstDayOfYear(): number;
|
|
48
|
-
firstDayOfWeek(): number;
|
|
49
|
-
|
|
50
|
-
weekdays(): string[];
|
|
51
|
-
weekdays(m: Moment, format?: string): string;
|
|
52
|
-
weekdaysMin(): string[];
|
|
53
|
-
weekdaysMin(m: Moment): string;
|
|
54
|
-
weekdaysShort(): string[];
|
|
55
|
-
weekdaysShort(m: Moment): string;
|
|
56
|
-
weekdaysParse(weekdayName: string, format: string, strict: boolean): number;
|
|
57
|
-
weekdaysRegex(strict: boolean): RegExp;
|
|
58
|
-
weekdaysShortRegex(strict: boolean): RegExp;
|
|
59
|
-
weekdaysMinRegex(strict: boolean): RegExp;
|
|
60
|
-
|
|
61
|
-
isPM(input: string): boolean;
|
|
62
|
-
meridiem(hour: number, minute: number, isLower: boolean): string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
interface StandaloneFormatSpec {
|
|
66
|
-
format: string[];
|
|
67
|
-
standalone: string[];
|
|
68
|
-
isFormat?: RegExp;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
interface WeekSpec {
|
|
72
|
-
dow: number;
|
|
73
|
-
doy?: number;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
type CalendarSpecVal = string | ((m?: MomentInput, now?: Moment) => string);
|
|
77
|
-
interface CalendarSpec {
|
|
78
|
-
sameDay?: CalendarSpecVal;
|
|
79
|
-
nextDay?: CalendarSpecVal;
|
|
80
|
-
lastDay?: CalendarSpecVal;
|
|
81
|
-
nextWeek?: CalendarSpecVal;
|
|
82
|
-
lastWeek?: CalendarSpecVal;
|
|
83
|
-
sameElse?: CalendarSpecVal;
|
|
84
|
-
|
|
85
|
-
// any additional properties might be used with moment.calendarFormat
|
|
86
|
-
[x: string]: CalendarSpecVal | undefined;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
type RelativeTimeSpecVal = (
|
|
90
|
-
string |
|
|
91
|
-
((n: number, withoutSuffix: boolean,
|
|
92
|
-
key: RelativeTimeKey, isFuture: boolean) => string)
|
|
93
|
-
);
|
|
94
|
-
type RelativeTimeFuturePastVal = string | ((relTime: string) => string);
|
|
95
|
-
|
|
96
|
-
interface RelativeTimeSpec {
|
|
97
|
-
future?: RelativeTimeFuturePastVal;
|
|
98
|
-
past?: RelativeTimeFuturePastVal;
|
|
99
|
-
s?: RelativeTimeSpecVal;
|
|
100
|
-
ss?: RelativeTimeSpecVal;
|
|
101
|
-
m?: RelativeTimeSpecVal;
|
|
102
|
-
mm?: RelativeTimeSpecVal;
|
|
103
|
-
h?: RelativeTimeSpecVal;
|
|
104
|
-
hh?: RelativeTimeSpecVal;
|
|
105
|
-
d?: RelativeTimeSpecVal;
|
|
106
|
-
dd?: RelativeTimeSpecVal;
|
|
107
|
-
w?: RelativeTimeSpecVal;
|
|
108
|
-
ww?: RelativeTimeSpecVal;
|
|
109
|
-
M?: RelativeTimeSpecVal;
|
|
110
|
-
MM?: RelativeTimeSpecVal;
|
|
111
|
-
y?: RelativeTimeSpecVal;
|
|
112
|
-
yy?: RelativeTimeSpecVal;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
interface LongDateFormatSpec {
|
|
116
|
-
LTS: string;
|
|
117
|
-
LT: string;
|
|
118
|
-
L: string;
|
|
119
|
-
LL: string;
|
|
120
|
-
LLL: string;
|
|
121
|
-
LLLL: string;
|
|
122
|
-
|
|
123
|
-
// lets forget for a sec that any upper/lower permutation will also work
|
|
124
|
-
lts?: string;
|
|
125
|
-
lt?: string;
|
|
126
|
-
l?: string;
|
|
127
|
-
ll?: string;
|
|
128
|
-
lll?: string;
|
|
129
|
-
llll?: string;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
type MonthWeekdayFn = (momentToFormat: Moment, format?: string) => string;
|
|
133
|
-
type WeekdaySimpleFn = (momentToFormat: Moment) => string;
|
|
134
|
-
|
|
135
|
-
interface LocaleSpecification {
|
|
136
|
-
months?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
|
|
137
|
-
monthsShort?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
|
|
138
|
-
|
|
139
|
-
weekdays?: string[] | StandaloneFormatSpec | MonthWeekdayFn;
|
|
140
|
-
weekdaysShort?: string[] | StandaloneFormatSpec | WeekdaySimpleFn;
|
|
141
|
-
weekdaysMin?: string[] | StandaloneFormatSpec | WeekdaySimpleFn;
|
|
142
|
-
|
|
143
|
-
meridiemParse?: RegExp;
|
|
144
|
-
meridiem?: (hour: number, minute:number, isLower: boolean) => string;
|
|
145
|
-
|
|
146
|
-
isPM?: (input: string) => boolean;
|
|
147
|
-
|
|
148
|
-
longDateFormat?: LongDateFormatSpec;
|
|
149
|
-
calendar?: CalendarSpec;
|
|
150
|
-
relativeTime?: RelativeTimeSpec;
|
|
151
|
-
invalidDate?: string;
|
|
152
|
-
ordinal?: (n: number) => string;
|
|
153
|
-
ordinalParse?: RegExp;
|
|
154
|
-
|
|
155
|
-
week?: WeekSpec;
|
|
156
|
-
|
|
157
|
-
// Allow anything: in general any property that is passed as locale spec is
|
|
158
|
-
// put in the locale object so it can be used by locale functions
|
|
159
|
-
[x: string]: any;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
interface MomentObjectOutput {
|
|
163
|
-
years: number;
|
|
164
|
-
/* One digit */
|
|
165
|
-
months: number;
|
|
166
|
-
/* Day of the month */
|
|
167
|
-
date: number;
|
|
168
|
-
hours: number;
|
|
169
|
-
minutes: number;
|
|
170
|
-
seconds: number;
|
|
171
|
-
milliseconds: number;
|
|
172
|
-
}
|
|
173
|
-
interface argThresholdOpts {
|
|
174
|
-
ss?: number;
|
|
175
|
-
s?: number;
|
|
176
|
-
m?: number;
|
|
177
|
-
h?: number;
|
|
178
|
-
d?: number;
|
|
179
|
-
w?: number | null;
|
|
180
|
-
M?: number;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
interface Duration {
|
|
184
|
-
clone(): Duration;
|
|
185
|
-
|
|
186
|
-
humanize(argWithSuffix?: boolean, argThresholds?: argThresholdOpts): string;
|
|
187
|
-
|
|
188
|
-
humanize(argThresholds?: argThresholdOpts): string;
|
|
189
|
-
|
|
190
|
-
abs(): Duration;
|
|
191
|
-
|
|
192
|
-
as(units: unitOfTime.Base): number;
|
|
193
|
-
get(units: unitOfTime.Base): number;
|
|
194
|
-
|
|
195
|
-
milliseconds(): number;
|
|
196
|
-
asMilliseconds(): number;
|
|
197
|
-
|
|
198
|
-
seconds(): number;
|
|
199
|
-
asSeconds(): number;
|
|
200
|
-
|
|
201
|
-
minutes(): number;
|
|
202
|
-
asMinutes(): number;
|
|
203
|
-
|
|
204
|
-
hours(): number;
|
|
205
|
-
asHours(): number;
|
|
206
|
-
|
|
207
|
-
days(): number;
|
|
208
|
-
asDays(): number;
|
|
209
|
-
|
|
210
|
-
weeks(): number;
|
|
211
|
-
asWeeks(): number;
|
|
212
|
-
|
|
213
|
-
months(): number;
|
|
214
|
-
asMonths(): number;
|
|
215
|
-
|
|
216
|
-
years(): number;
|
|
217
|
-
asYears(): number;
|
|
218
|
-
|
|
219
|
-
add(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
|
|
220
|
-
subtract(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
|
|
221
|
-
|
|
222
|
-
locale(): string;
|
|
223
|
-
locale(locale: LocaleSpecifier): Duration;
|
|
224
|
-
localeData(): Locale;
|
|
225
|
-
|
|
226
|
-
toISOString(): string;
|
|
227
|
-
toJSON(): string;
|
|
228
|
-
|
|
229
|
-
isValid(): boolean;
|
|
230
|
-
|
|
231
|
-
/**
|
|
232
|
-
* @deprecated since version 2.8.0
|
|
233
|
-
*/
|
|
234
|
-
lang(locale: LocaleSpecifier): Moment;
|
|
235
|
-
/**
|
|
236
|
-
* @deprecated since version 2.8.0
|
|
237
|
-
*/
|
|
238
|
-
lang(): Locale;
|
|
239
|
-
/**
|
|
240
|
-
* @deprecated
|
|
241
|
-
*/
|
|
242
|
-
toIsoString(): string;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
interface MomentRelativeTime {
|
|
246
|
-
future: any;
|
|
247
|
-
past: any;
|
|
248
|
-
s: any;
|
|
249
|
-
ss: any;
|
|
250
|
-
m: any;
|
|
251
|
-
mm: any;
|
|
252
|
-
h: any;
|
|
253
|
-
hh: any;
|
|
254
|
-
d: any;
|
|
255
|
-
dd: any;
|
|
256
|
-
M: any;
|
|
257
|
-
MM: any;
|
|
258
|
-
y: any;
|
|
259
|
-
yy: any;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
interface MomentLongDateFormat {
|
|
263
|
-
L: string;
|
|
264
|
-
LL: string;
|
|
265
|
-
LLL: string;
|
|
266
|
-
LLLL: string;
|
|
267
|
-
LT: string;
|
|
268
|
-
LTS: string;
|
|
269
|
-
|
|
270
|
-
l?: string;
|
|
271
|
-
ll?: string;
|
|
272
|
-
lll?: string;
|
|
273
|
-
llll?: string;
|
|
274
|
-
lt?: string;
|
|
275
|
-
lts?: string;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
interface MomentParsingFlags {
|
|
279
|
-
empty: boolean;
|
|
280
|
-
unusedTokens: string[];
|
|
281
|
-
unusedInput: string[];
|
|
282
|
-
overflow: number;
|
|
283
|
-
charsLeftOver: number;
|
|
284
|
-
nullInput: boolean;
|
|
285
|
-
invalidMonth: string | null;
|
|
286
|
-
invalidFormat: boolean;
|
|
287
|
-
userInvalidated: boolean;
|
|
288
|
-
iso: boolean;
|
|
289
|
-
parsedDateParts: any[];
|
|
290
|
-
meridiem: string | null;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
interface MomentParsingFlagsOpt {
|
|
294
|
-
empty?: boolean;
|
|
295
|
-
unusedTokens?: string[];
|
|
296
|
-
unusedInput?: string[];
|
|
297
|
-
overflow?: number;
|
|
298
|
-
charsLeftOver?: number;
|
|
299
|
-
nullInput?: boolean;
|
|
300
|
-
invalidMonth?: string;
|
|
301
|
-
invalidFormat?: boolean;
|
|
302
|
-
userInvalidated?: boolean;
|
|
303
|
-
iso?: boolean;
|
|
304
|
-
parsedDateParts?: any[];
|
|
305
|
-
meridiem?: string | null;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
interface MomentBuiltinFormat {
|
|
309
|
-
__momentBuiltinFormatBrand: any;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
type MomentFormatSpecification = string | MomentBuiltinFormat | (string | MomentBuiltinFormat)[];
|
|
313
|
-
|
|
314
|
-
namespace unitOfTime {
|
|
315
|
-
type Base = (
|
|
316
|
-
"year" | "years" | "y" |
|
|
317
|
-
"month" | "months" | "M" |
|
|
318
|
-
"week" | "weeks" | "w" |
|
|
319
|
-
"day" | "days" | "d" |
|
|
320
|
-
"hour" | "hours" | "h" |
|
|
321
|
-
"minute" | "minutes" | "m" |
|
|
322
|
-
"second" | "seconds" | "s" |
|
|
323
|
-
"millisecond" | "milliseconds" | "ms"
|
|
324
|
-
);
|
|
325
|
-
|
|
326
|
-
type _quarter = "quarter" | "quarters" | "Q";
|
|
327
|
-
type _isoWeek = "isoWeek" | "isoWeeks" | "W";
|
|
328
|
-
type _date = "date" | "dates" | "D";
|
|
329
|
-
type DurationConstructor = Base | _quarter;
|
|
330
|
-
|
|
331
|
-
type DurationAs = Base;
|
|
332
|
-
|
|
333
|
-
type StartOf = Base | _quarter | _isoWeek | _date | null;
|
|
334
|
-
|
|
335
|
-
type Diff = Base | _quarter;
|
|
336
|
-
|
|
337
|
-
type MomentConstructor = Base | _date;
|
|
338
|
-
|
|
339
|
-
type All = Base | _quarter | _isoWeek | _date |
|
|
340
|
-
"weekYear" | "weekYears" | "gg" |
|
|
341
|
-
"isoWeekYear" | "isoWeekYears" | "GG" |
|
|
342
|
-
"dayOfYear" | "dayOfYears" | "DDD" |
|
|
343
|
-
"weekday" | "weekdays" | "e" |
|
|
344
|
-
"isoWeekday" | "isoWeekdays" | "E";
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
interface MomentInputObject {
|
|
348
|
-
years?: number;
|
|
349
|
-
year?: number;
|
|
350
|
-
y?: number;
|
|
351
|
-
|
|
352
|
-
months?: number;
|
|
353
|
-
month?: number;
|
|
354
|
-
M?: number;
|
|
355
|
-
|
|
356
|
-
days?: number;
|
|
357
|
-
day?: number;
|
|
358
|
-
d?: number;
|
|
359
|
-
|
|
360
|
-
dates?: number;
|
|
361
|
-
date?: number;
|
|
362
|
-
D?: number;
|
|
363
|
-
|
|
364
|
-
hours?: number;
|
|
365
|
-
hour?: number;
|
|
366
|
-
h?: number;
|
|
367
|
-
|
|
368
|
-
minutes?: number;
|
|
369
|
-
minute?: number;
|
|
370
|
-
m?: number;
|
|
371
|
-
|
|
372
|
-
seconds?: number;
|
|
373
|
-
second?: number;
|
|
374
|
-
s?: number;
|
|
375
|
-
|
|
376
|
-
milliseconds?: number;
|
|
377
|
-
millisecond?: number;
|
|
378
|
-
ms?: number;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
interface DurationInputObject extends MomentInputObject {
|
|
382
|
-
quarters?: number;
|
|
383
|
-
quarter?: number;
|
|
384
|
-
Q?: number;
|
|
385
|
-
|
|
386
|
-
weeks?: number;
|
|
387
|
-
week?: number;
|
|
388
|
-
w?: number;
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
interface MomentSetObject extends MomentInputObject {
|
|
392
|
-
weekYears?: number;
|
|
393
|
-
weekYear?: number;
|
|
394
|
-
gg?: number;
|
|
395
|
-
|
|
396
|
-
isoWeekYears?: number;
|
|
397
|
-
isoWeekYear?: number;
|
|
398
|
-
GG?: number;
|
|
399
|
-
|
|
400
|
-
quarters?: number;
|
|
401
|
-
quarter?: number;
|
|
402
|
-
Q?: number;
|
|
403
|
-
|
|
404
|
-
weeks?: number;
|
|
405
|
-
week?: number;
|
|
406
|
-
w?: number;
|
|
407
|
-
|
|
408
|
-
isoWeeks?: number;
|
|
409
|
-
isoWeek?: number;
|
|
410
|
-
W?: number;
|
|
411
|
-
|
|
412
|
-
dayOfYears?: number;
|
|
413
|
-
dayOfYear?: number;
|
|
414
|
-
DDD?: number;
|
|
415
|
-
|
|
416
|
-
weekdays?: number;
|
|
417
|
-
weekday?: number;
|
|
418
|
-
e?: number;
|
|
419
|
-
|
|
420
|
-
isoWeekdays?: number;
|
|
421
|
-
isoWeekday?: number;
|
|
422
|
-
E?: number;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
interface FromTo {
|
|
426
|
-
from: MomentInput;
|
|
427
|
-
to: MomentInput;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
type MomentInput = Moment | Date | string | number | (number | string)[] | MomentInputObject | null | undefined;
|
|
431
|
-
type DurationInputArg1 = Duration | number | string | FromTo | DurationInputObject | null | undefined;
|
|
432
|
-
type DurationInputArg2 = unitOfTime.DurationConstructor;
|
|
433
|
-
type LocaleSpecifier = string | Moment | Duration | string[] | boolean;
|
|
434
|
-
|
|
435
|
-
interface MomentCreationData {
|
|
436
|
-
input: MomentInput;
|
|
437
|
-
format?: MomentFormatSpecification;
|
|
438
|
-
locale: Locale;
|
|
439
|
-
isUTC: boolean;
|
|
440
|
-
strict?: boolean;
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
interface Moment extends Object {
|
|
444
|
-
format(format?: string): string;
|
|
445
|
-
|
|
446
|
-
startOf(unitOfTime: unitOfTime.StartOf): Moment;
|
|
447
|
-
endOf(unitOfTime: unitOfTime.StartOf): Moment;
|
|
448
|
-
|
|
449
|
-
add(amount?: DurationInputArg1, unit?: DurationInputArg2): Moment;
|
|
450
|
-
/**
|
|
451
|
-
* @deprecated reverse syntax
|
|
452
|
-
*/
|
|
453
|
-
add(unit: unitOfTime.DurationConstructor, amount: number|string): Moment;
|
|
454
|
-
|
|
455
|
-
subtract(amount?: DurationInputArg1, unit?: DurationInputArg2): Moment;
|
|
456
|
-
/**
|
|
457
|
-
* @deprecated reverse syntax
|
|
458
|
-
*/
|
|
459
|
-
subtract(unit: unitOfTime.DurationConstructor, amount: number|string): Moment;
|
|
460
|
-
|
|
461
|
-
calendar(): string;
|
|
462
|
-
calendar(formats: CalendarSpec): string;
|
|
463
|
-
calendar(time?: MomentInput, formats?: CalendarSpec): string;
|
|
464
|
-
|
|
465
|
-
clone(): Moment;
|
|
466
|
-
|
|
467
|
-
/**
|
|
468
|
-
* @return Unix timestamp in milliseconds
|
|
469
|
-
*/
|
|
470
|
-
valueOf(): number;
|
|
471
|
-
|
|
472
|
-
// current date/time in local mode
|
|
473
|
-
local(keepLocalTime?: boolean): Moment;
|
|
474
|
-
isLocal(): boolean;
|
|
475
|
-
|
|
476
|
-
// current date/time in UTC mode
|
|
477
|
-
utc(keepLocalTime?: boolean): Moment;
|
|
478
|
-
isUTC(): boolean;
|
|
479
|
-
/**
|
|
480
|
-
* @deprecated use isUTC
|
|
481
|
-
*/
|
|
482
|
-
isUtc(): boolean;
|
|
483
|
-
|
|
484
|
-
parseZone(): Moment;
|
|
485
|
-
isValid(): boolean;
|
|
486
|
-
invalidAt(): number;
|
|
487
|
-
|
|
488
|
-
hasAlignedHourOffset(other?: MomentInput): boolean;
|
|
489
|
-
|
|
490
|
-
creationData(): MomentCreationData;
|
|
491
|
-
parsingFlags(): MomentParsingFlags;
|
|
492
|
-
|
|
493
|
-
year(y: number): Moment;
|
|
494
|
-
year(): number;
|
|
495
|
-
/**
|
|
496
|
-
* @deprecated use year(y)
|
|
497
|
-
*/
|
|
498
|
-
years(y: number): Moment;
|
|
499
|
-
/**
|
|
500
|
-
* @deprecated use year()
|
|
501
|
-
*/
|
|
502
|
-
years(): number;
|
|
503
|
-
quarter(): number;
|
|
504
|
-
quarter(q: number): Moment;
|
|
505
|
-
quarters(): number;
|
|
506
|
-
quarters(q: number): Moment;
|
|
507
|
-
month(M: number|string): Moment;
|
|
508
|
-
month(): number;
|
|
509
|
-
/**
|
|
510
|
-
* @deprecated use month(M)
|
|
511
|
-
*/
|
|
512
|
-
months(M: number|string): Moment;
|
|
513
|
-
/**
|
|
514
|
-
* @deprecated use month()
|
|
515
|
-
*/
|
|
516
|
-
months(): number;
|
|
517
|
-
day(d: number|string): Moment;
|
|
518
|
-
day(): number;
|
|
519
|
-
days(d: number|string): Moment;
|
|
520
|
-
days(): number;
|
|
521
|
-
date(d: number): Moment;
|
|
522
|
-
date(): number;
|
|
523
|
-
/**
|
|
524
|
-
* @deprecated use date(d)
|
|
525
|
-
*/
|
|
526
|
-
dates(d: number): Moment;
|
|
527
|
-
/**
|
|
528
|
-
* @deprecated use date()
|
|
529
|
-
*/
|
|
530
|
-
dates(): number;
|
|
531
|
-
hour(h: number): Moment;
|
|
532
|
-
hour(): number;
|
|
533
|
-
hours(h: number): Moment;
|
|
534
|
-
hours(): number;
|
|
535
|
-
minute(m: number): Moment;
|
|
536
|
-
minute(): number;
|
|
537
|
-
minutes(m: number): Moment;
|
|
538
|
-
minutes(): number;
|
|
539
|
-
second(s: number): Moment;
|
|
540
|
-
second(): number;
|
|
541
|
-
seconds(s: number): Moment;
|
|
542
|
-
seconds(): number;
|
|
543
|
-
millisecond(ms: number): Moment;
|
|
544
|
-
millisecond(): number;
|
|
545
|
-
milliseconds(ms: number): Moment;
|
|
546
|
-
milliseconds(): number;
|
|
547
|
-
weekday(): number;
|
|
548
|
-
weekday(d: number): Moment;
|
|
549
|
-
isoWeekday(): number;
|
|
550
|
-
isoWeekday(d: number|string): Moment;
|
|
551
|
-
weekYear(): number;
|
|
552
|
-
weekYear(d: number): Moment;
|
|
553
|
-
isoWeekYear(): number;
|
|
554
|
-
isoWeekYear(d: number): Moment;
|
|
555
|
-
week(): number;
|
|
556
|
-
week(d: number): Moment;
|
|
557
|
-
weeks(): number;
|
|
558
|
-
weeks(d: number): Moment;
|
|
559
|
-
isoWeek(): number;
|
|
560
|
-
isoWeek(d: number): Moment;
|
|
561
|
-
isoWeeks(): number;
|
|
562
|
-
isoWeeks(d: number): Moment;
|
|
563
|
-
weeksInYear(): number;
|
|
564
|
-
isoWeeksInYear(): number;
|
|
565
|
-
isoWeeksInISOWeekYear(): number;
|
|
566
|
-
dayOfYear(): number;
|
|
567
|
-
dayOfYear(d: number): Moment;
|
|
568
|
-
|
|
569
|
-
from(inp: MomentInput, suffix?: boolean): string;
|
|
570
|
-
to(inp: MomentInput, suffix?: boolean): string;
|
|
571
|
-
fromNow(withoutSuffix?: boolean): string;
|
|
572
|
-
toNow(withoutPrefix?: boolean): string;
|
|
573
|
-
|
|
574
|
-
diff(b: MomentInput, unitOfTime?: unitOfTime.Diff, precise?: boolean): number;
|
|
575
|
-
|
|
576
|
-
toArray(): [number, number, number, number, number, number, number];
|
|
577
|
-
toDate(): Date;
|
|
578
|
-
toISOString(keepOffset?: boolean): string;
|
|
579
|
-
inspect(): string;
|
|
580
|
-
toJSON(): string;
|
|
581
|
-
unix(): number;
|
|
582
|
-
|
|
583
|
-
isLeapYear(): boolean;
|
|
584
|
-
/**
|
|
585
|
-
* @deprecated in favor of utcOffset
|
|
586
|
-
*/
|
|
587
|
-
zone(): number;
|
|
588
|
-
zone(b: number|string): Moment;
|
|
589
|
-
utcOffset(): number;
|
|
590
|
-
utcOffset(b: number|string, keepLocalTime?: boolean): Moment;
|
|
591
|
-
isUtcOffset(): boolean;
|
|
592
|
-
daysInMonth(): number;
|
|
593
|
-
isDST(): boolean;
|
|
594
|
-
|
|
595
|
-
zoneAbbr(): string;
|
|
596
|
-
zoneName(): string;
|
|
597
|
-
|
|
598
|
-
isBefore(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
|
|
599
|
-
isAfter(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
|
|
600
|
-
isSame(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
|
|
601
|
-
isSameOrAfter(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
|
|
602
|
-
isSameOrBefore(inp?: MomentInput, granularity?: unitOfTime.StartOf): boolean;
|
|
603
|
-
isBetween(a: MomentInput, b: MomentInput, granularity?: unitOfTime.StartOf, inclusivity?: "()" | "[)" | "(]" | "[]"): boolean;
|
|
604
|
-
|
|
605
|
-
/**
|
|
606
|
-
* @deprecated as of 2.8.0, use locale
|
|
607
|
-
*/
|
|
608
|
-
lang(language: LocaleSpecifier): Moment;
|
|
609
|
-
/**
|
|
610
|
-
* @deprecated as of 2.8.0, use locale
|
|
611
|
-
*/
|
|
612
|
-
lang(): Locale;
|
|
613
|
-
|
|
614
|
-
locale(): string;
|
|
615
|
-
locale(locale: LocaleSpecifier): Moment;
|
|
616
|
-
|
|
617
|
-
localeData(): Locale;
|
|
618
|
-
|
|
619
|
-
/**
|
|
620
|
-
* @deprecated no reliable implementation
|
|
621
|
-
*/
|
|
622
|
-
isDSTShifted(): boolean;
|
|
623
|
-
|
|
624
|
-
// NOTE(constructor): Same as moment constructor
|
|
625
|
-
/**
|
|
626
|
-
* @deprecated as of 2.7.0, use moment.min/max
|
|
627
|
-
*/
|
|
628
|
-
max(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
|
|
629
|
-
/**
|
|
630
|
-
* @deprecated as of 2.7.0, use moment.min/max
|
|
631
|
-
*/
|
|
632
|
-
max(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
|
|
633
|
-
|
|
634
|
-
// NOTE(constructor): Same as moment constructor
|
|
635
|
-
/**
|
|
636
|
-
* @deprecated as of 2.7.0, use moment.min/max
|
|
637
|
-
*/
|
|
638
|
-
min(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
|
|
639
|
-
/**
|
|
640
|
-
* @deprecated as of 2.7.0, use moment.min/max
|
|
641
|
-
*/
|
|
642
|
-
min(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
|
|
643
|
-
|
|
644
|
-
get(unit: unitOfTime.All): number;
|
|
645
|
-
set(unit: unitOfTime.All, value: number): Moment;
|
|
646
|
-
set(objectLiteral: MomentSetObject): Moment;
|
|
647
|
-
|
|
648
|
-
toObject(): MomentObjectOutput;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
export var version: string;
|
|
652
|
-
export var fn: Moment;
|
|
653
|
-
|
|
654
|
-
// NOTE(constructor): Same as moment constructor
|
|
655
|
-
/**
|
|
656
|
-
* @param strict Strict parsing disables the deprecated fallback to the native Date constructor when
|
|
657
|
-
* parsing a string.
|
|
658
|
-
*/
|
|
659
|
-
export function utc(inp?: MomentInput, strict?: boolean): Moment;
|
|
660
|
-
/**
|
|
661
|
-
* @param strict Strict parsing requires that the format and input match exactly, including delimiters.
|
|
662
|
-
* Strict parsing is frequently the best parsing option. For more information about choosing strict vs
|
|
663
|
-
* forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
|
|
664
|
-
*/
|
|
665
|
-
export function utc(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
|
|
666
|
-
/**
|
|
667
|
-
* @param strict Strict parsing requires that the format and input match exactly, including delimiters.
|
|
668
|
-
* Strict parsing is frequently the best parsing option. For more information about choosing strict vs
|
|
669
|
-
* forgiving parsing, see the [parsing guide](https://momentjs.com/guides/#/parsing/).
|
|
670
|
-
*/
|
|
671
|
-
export function utc(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
|
|
672
|
-
|
|
673
|
-
export function unix(timestamp: number): Moment;
|
|
674
|
-
|
|
675
|
-
export function invalid(flags?: MomentParsingFlagsOpt): Moment;
|
|
676
|
-
export function isMoment(m: any): m is Moment;
|
|
677
|
-
export function isDate(m: any): m is Date;
|
|
678
|
-
export function isDuration(d: any): d is Duration;
|
|
679
|
-
|
|
680
|
-
/**
|
|
681
|
-
* @deprecated in 2.8.0
|
|
682
|
-
*/
|
|
683
|
-
export function lang(language?: string): string;
|
|
684
|
-
/**
|
|
685
|
-
* @deprecated in 2.8.0
|
|
686
|
-
*/
|
|
687
|
-
export function lang(language?: string, definition?: Locale): string;
|
|
688
|
-
|
|
689
|
-
export function locale(language?: string): string;
|
|
690
|
-
export function locale(language?: string[]): string;
|
|
691
|
-
export function locale(language?: string, definition?: LocaleSpecification | null | undefined): string;
|
|
692
|
-
|
|
693
|
-
export function localeData(key?: string | string[]): Locale;
|
|
694
|
-
|
|
695
|
-
export function duration(inp?: DurationInputArg1, unit?: DurationInputArg2): Duration;
|
|
696
|
-
|
|
697
|
-
// NOTE(constructor): Same as moment constructor
|
|
698
|
-
export function parseZone(inp?: MomentInput, format?: MomentFormatSpecification, strict?: boolean): Moment;
|
|
699
|
-
export function parseZone(inp?: MomentInput, format?: MomentFormatSpecification, language?: string, strict?: boolean): Moment;
|
|
700
|
-
|
|
701
|
-
export function months(): string[];
|
|
702
|
-
export function months(index: number): string;
|
|
703
|
-
export function months(format: string): string[];
|
|
704
|
-
export function months(format: string, index: number): string;
|
|
705
|
-
export function monthsShort(): string[];
|
|
706
|
-
export function monthsShort(index: number): string;
|
|
707
|
-
export function monthsShort(format: string): string[];
|
|
708
|
-
export function monthsShort(format: string, index: number): string;
|
|
709
|
-
|
|
710
|
-
export function weekdays(): string[];
|
|
711
|
-
export function weekdays(index: number): string;
|
|
712
|
-
export function weekdays(format: string): string[];
|
|
713
|
-
export function weekdays(format: string, index: number): string;
|
|
714
|
-
export function weekdays(localeSorted: boolean): string[];
|
|
715
|
-
export function weekdays(localeSorted: boolean, index: number): string;
|
|
716
|
-
export function weekdays(localeSorted: boolean, format: string): string[];
|
|
717
|
-
export function weekdays(localeSorted: boolean, format: string, index: number): string;
|
|
718
|
-
export function weekdaysShort(): string[];
|
|
719
|
-
export function weekdaysShort(index: number): string;
|
|
720
|
-
export function weekdaysShort(format: string): string[];
|
|
721
|
-
export function weekdaysShort(format: string, index: number): string;
|
|
722
|
-
export function weekdaysShort(localeSorted: boolean): string[];
|
|
723
|
-
export function weekdaysShort(localeSorted: boolean, index: number): string;
|
|
724
|
-
export function weekdaysShort(localeSorted: boolean, format: string): string[];
|
|
725
|
-
export function weekdaysShort(localeSorted: boolean, format: string, index: number): string;
|
|
726
|
-
export function weekdaysMin(): string[];
|
|
727
|
-
export function weekdaysMin(index: number): string;
|
|
728
|
-
export function weekdaysMin(format: string): string[];
|
|
729
|
-
export function weekdaysMin(format: string, index: number): string;
|
|
730
|
-
export function weekdaysMin(localeSorted: boolean): string[];
|
|
731
|
-
export function weekdaysMin(localeSorted: boolean, index: number): string;
|
|
732
|
-
export function weekdaysMin(localeSorted: boolean, format: string): string[];
|
|
733
|
-
export function weekdaysMin(localeSorted: boolean, format: string, index: number): string;
|
|
734
|
-
|
|
735
|
-
export function min(moments: Moment[]): Moment;
|
|
736
|
-
export function min(...moments: Moment[]): Moment;
|
|
737
|
-
export function max(moments: Moment[]): Moment;
|
|
738
|
-
export function max(...moments: Moment[]): Moment;
|
|
739
|
-
|
|
740
|
-
/**
|
|
741
|
-
* Returns unix time in milliseconds. Overwrite for profit.
|
|
742
|
-
*/
|
|
743
|
-
export function now(): number;
|
|
744
|
-
|
|
745
|
-
export function defineLocale(language: string, localeSpec: LocaleSpecification | null): Locale;
|
|
746
|
-
export function updateLocale(language: string, localeSpec: LocaleSpecification | null): Locale;
|
|
747
|
-
|
|
748
|
-
export function locales(): string[];
|
|
749
|
-
|
|
750
|
-
export function normalizeUnits(unit: unitOfTime.All): string;
|
|
751
|
-
export function relativeTimeThreshold(threshold: string): number | boolean;
|
|
752
|
-
export function relativeTimeThreshold(threshold: string, limit: number): boolean;
|
|
753
|
-
export function relativeTimeRounding(fn: (num: number) => number): boolean;
|
|
754
|
-
export function relativeTimeRounding(): (num: number) => number;
|
|
755
|
-
export function calendarFormat(m: Moment, now: Moment): string;
|
|
756
|
-
|
|
757
|
-
export function parseTwoDigitYear(input: string): number;
|
|
758
|
-
/**
|
|
759
|
-
* Constant used to enable explicit ISO_8601 format parsing.
|
|
760
|
-
*/
|
|
761
|
-
export var ISO_8601: MomentBuiltinFormat;
|
|
762
|
-
export var RFC_2822: MomentBuiltinFormat;
|
|
763
|
-
|
|
764
|
-
export var defaultFormat: string;
|
|
765
|
-
export var defaultFormatUtc: string;
|
|
766
|
-
|
|
767
|
-
export var suppressDeprecationWarnings: boolean;
|
|
768
|
-
export var deprecationHandler: ((name: string | null, msg: string) => void) | null | undefined;
|
|
769
|
-
|
|
770
|
-
export var HTML5_FMT: {
|
|
771
|
-
DATETIME_LOCAL: string,
|
|
772
|
-
DATETIME_LOCAL_SECONDS: string,
|
|
773
|
-
DATETIME_LOCAL_MS: string,
|
|
774
|
-
DATE: string,
|
|
775
|
-
TIME: string,
|
|
776
|
-
TIME_SECONDS: string,
|
|
777
|
-
TIME_MS: string,
|
|
778
|
-
WEEK: string,
|
|
779
|
-
MONTH: string
|
|
780
|
-
};
|
|
781
|
-
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
export = moment;
|
|
785
|
-
export as namespace moment;
|